-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathg.eags.us.har
2605 lines (2605 loc) · 273 KB
/
g.eags.us.har
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"log": {
"version": "1.2",
"creator": {
"name": "WebInspector",
"version": "537.36"
},
"pages": [
{
"startedDateTime": "2022-04-09T16:02:25.901Z",
"id": "page_1",
"title": "https://g.eags.us/fnaw/",
"pageTimings": {
"onContentLoad": 213.84500002022833,
"onLoad": 291.7280000401661
}
}
],
"entries": [
{
"_initiator": {
"type": "other"
},
"_priority": "VeryHigh",
"_resourceType": "document",
"cache": {},
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://g.eags.us/fnaw/",
"httpVersion": "h3",
"headers": [
{
"name": ":authority",
"value": "g.eags.us"
},
{
"name": ":method",
"value": "GET"
},
{
"name": ":path",
"value": "/fnaw/"
},
{
"name": ":scheme",
"value": "https"
},
{
"name": "accept",
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9"
},
{
"name": "accept-encoding",
"value": "gzip, deflate, br"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.9"
},
{
"name": "cache-control",
"value": "no-cache"
},
{
"name": "cookie",
"value": "phpbb3_4xdki_u=369; phpbb3_4xdki_k=njc2q2x7i3tcqu2j; phpbb3_4xdki_sid=3b45c9ce7b7eb853d1c12f984d56cde4"
},
{
"name": "pragma",
"value": "no-cache"
},
{
"name": "referer",
"value": "https://g.eags.us/"
},
{
"name": "sec-ch-ua",
"value": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"100\", \"Google Chrome\";v=\"100\""
},
{
"name": "sec-ch-ua-mobile",
"value": "?0"
},
{
"name": "sec-ch-ua-platform",
"value": "\"Windows\""
},
{
"name": "sec-fetch-dest",
"value": "document"
},
{
"name": "sec-fetch-mode",
"value": "navigate"
},
{
"name": "sec-fetch-site",
"value": "same-origin"
},
{
"name": "sec-fetch-user",
"value": "?1"
},
{
"name": "upgrade-insecure-requests",
"value": "1"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36"
}
],
"queryString": [],
"cookies": [
{
"name": "phpbb3_4xdki_u",
"value": "369",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_k",
"value": "njc2q2x7i3tcqu2j",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_sid",
"value": "3b45c9ce7b7eb853d1c12f984d56cde4",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
}
],
"headersSize": -1,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "",
"httpVersion": "h3",
"headers": [
{
"name": "access-control-allow-credentials",
"value": "true"
},
{
"name": "access-control-allow-headers",
"value": "DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization"
},
{
"name": "access-control-allow-methods",
"value": "GET, POST, OPTIONS"
},
{
"name": "access-control-allow-origin",
"value": "*"
},
{
"name": "alt-svc",
"value": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"
},
{
"name": "cache-control",
"value": "max-age=10800"
},
{
"name": "cf-cache-status",
"value": "DYNAMIC"
},
{
"name": "cf-ray",
"value": "6f9478a86eeb63d2-ATL"
},
{
"name": "content-encoding",
"value": "br"
},
{
"name": "content-security-policy",
"value": "frame-ancestors *"
},
{
"name": "content-security-policy",
"value": "upgrade-insecure-requests"
},
{
"name": "content-type",
"value": "text/html"
},
{
"name": "date",
"value": "Sat, 09 Apr 2022 16:03:10 GMT"
},
{
"name": "expect-ct",
"value": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
},
{
"name": "expires",
"value": "Sat, 09 Apr 2022 19:03:10 GMT"
},
{
"name": "last-modified",
"value": "Fri, 08 Apr 2022 23:46:13 GMT"
},
{
"name": "nel",
"value": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "report-to",
"value": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DnYgzuK9wUbi8ex2u36VeCCMrlYMMiThFxjiBP6uuLBt8Mhu6x9j1YAUJZz0Gg6MY5UoxmUt4YqBQkMuhbV2k9i3YMvzY%2F8Hb1MXcDwZQd1rpTkEhIJQ2zVcO%2B4e52X0jhZ94bAGWCk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "server",
"value": "cloudflare"
},
{
"name": "x-content-type-options",
"value": "nosniff"
},
{
"name": "x-frame-options",
"value": "DENY"
}
],
"cookies": [],
"content": {
"size": 5745,
"mimeType": "text/html",
"text": "<!DOCTYPE html>\n<!--\nCopyright (C) 2018 Calder Young. All Rights Reserved.\n\nThis work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.\nTo view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to Creative\nCommons, PO Box 1866, Mountain View, CA 94042, USA. \n-->\n<html>\n <head>\n <title>Five Nights at Winston's</title>\n <meta charset=\"UTF-8\" />\n <meta name=\"viewport\" content=\"width=device-width\" />\n <meta name=\"description\" content=\"My fnaf fan game where you play as the janitor at my school while these erasers with creepy faces and paperclip limbs hunt you down\" />\n <meta name=\"keywords\" content=\"calder, young, calder young, LAX1DUDE, laxdude, erasers, winston, eagler, eaglers, five nights at winston's, five nights at winstons, darvy, five nights, winston, winston's, fnaw, fnaf, fan game, parody, funny, joke\" />\n <meta name='url' content=\"https://g.eags.us/fnaw/\" />\n <meta name=\"author\" content=\"Calder Young\" />\n <meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n <meta property=\"og:title\" content=\"Five Nights at Winston's\" />\n <meta property=\"og:locale\" content=\"en-US\" />\n <meta property=\"og:type\" content=\"website\" />\n <meta property=\"og:url\" content=\"https://g.eags.us/fnaw/\" />\n <meta property=\"og:image\" content=\"https://g.eags.us/fnaw/smile.jpg\" />\n <meta property=\"og:description\" content=\"My fnaf fan game where you play as the janitor at my school while these erasers with creepy faces and paperclip limbs hunt you down\" />\n <link type=\"image/x-icon\" rel=\"shortcut icon\" href=\"favicon.ico\" />\n <link type=\"text/css\" href=\"https://fonts.googleapis.com/css?family=VT323\" rel=\"stylesheet\">\n <style type=\"text/css\">@font-face { font-family: 'font'; src: url('font.woff2') format('woff2'), url('font.woff') format('woff'); font-weight: normal; font-style: normal; }</style>\n\t\t<script type=\"text/javascript\">window.tag=[\"fnaw1_\"];</script>\n\t\t<script type=\"text/javascript\" src=\"/runtime.js\"></script>\n <script type=\"text/javascript\" src=\"untar.js\"></script>\n <script type=\"text/javascript\" src=\"fnaw3.js\"></script>\n </head>\n <body style=\"background-color:black;margin:0px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;overflow:hidden;\">\n <p style=\"font-family: 'VT323';z-index:-10;\">.</p>\n <p style=\"font-family: 'font';z-index:-10;\">.</p>\n <p id=\"game\" style=\"display:none;\">fnaw1</p>\n <p>These are all keywords from here down:</p>\n <h1>Play Five Nights at Winston's</h1>\n <p> Five night's at winstons by calder young. Five nights at winston's by calder. My fnaf fan game where you play as the janitor at my school while these erasers with creepy faces and paperclip limbs hunt you down. Created by Calder Young. On g.eags.us, Created by LAX1DUDE. By Calder Young. Game about baby winston and being hunted by erasers. This game is takes place at Calder Young's school. You play as the janitor. Blah Blah this is just to make google think this is a real site. Play calder's game on this page. FNaW. calder young five nights at winston's. five nights at eagler's eaglers. Did you know darvy is a yeeing fudgli? Did you know the real name of the school is never mentioned because the teachers are scared of school sh00ters? In this game which is called five nights at winston's by calder young yee eagler google rank my site higher. Five nights at winston's from kahn academy sucks don't play it. Its by a deeing fudgli. Five nights at winstons is easily the best game I've ever made.</p>\n <img src=\"smile.jpg\" width=\"128\" height=\"72\" alt=\"five nights at winston's loading screen\" style=\"-webkit-filter:brightness(0.0);filter: brightness(0.0);\" />\n <img src=\"https://eags.us/darvystare.png\" width=\"128\" height=\"72\" alt=\"five nights at winston's alternate logo\" style=\"-webkit-filter:brightness(0.0);filter: brightness(0.0);\" />\n <p>You can play five nights at winston's below. it's really cool. Let me remind you five nights at winston's was created by calder young. Calder Young is also known as LAX1DUDE unfortunatly yes that name was derived from laxdude from the original five nights at winstons game in 2015. ya ya ya ya ya ya. Darvy is secretly Darvilingus. Everyone is an eagler.</p>\n <canvas width=\"1280\" height=\"720\" style=\"position:absolute;z-index:1;filter:brightness(2.0);\" id=\"webglcanvas\"></canvas>\n <canvas width=\"1280\" height=\"720\" style=\"position:absolute;z-index:2;transform-origin:top left;\" id=\"2dcanvas\"></canvas>\n <div id=\"mobilebutton\" style=\"display:none;width:500px;height:300px;position:absolute;top:calc(50vh - 196px);left:calc(50vw - 296px);z-index:10;background:black;color:white;font-family:'Anonymous Pro';padding:20px;text-align:center;border:3px solid white;border-radius:5px;\">\n <h1>Mobile browser detected! You'll have to tap this button to allow sounds:</h1>\n <button id=\"allowsound\" style=\"zoom:3;\">Click Here</button>\n <h1>Sorry!</h1>\n </div>\n <div id=\"fullscreen\" style=\"display:none;width:500px;height:300px;position:absolute;top:calc(50vh - 196px);left:calc(50vw - 296px);z-index:10;background:black;color:white;font-family:'Anonymous Pro';padding:20px;text-align:center;border:3px solid white;border-radius:5px;\">\n <h1>Press this button to return to fullscreen mode:</h1>\n <button id=\"enterfull\" style=\"zoom:3;\">Click Here</button><br />\n <button id=\"hidefull\" style=\"zoom:1.5;\">Cancel</button>\n </div>\n </body>\n</html>\n"
},
"redirectURL": "",
"headersSize": -1,
"bodySize": -1,
"_transferSize": 2593,
"_error": null
},
"serverIPAddress": "[2606:4700:3037::ac43:db86]",
"startedDateTime": "2022-04-09T16:02:25.899Z",
"time": 109.25000009592623,
"timings": {
"blocked": 3.2000000428706405,
"dns": -1,
"ssl": -1,
"connect": -1,
"send": 0.347,
"wait": 103.54300002031029,
"receive": 2.1600000327453017,
"_blocked_queueing": 1.9320000428706408
}
},
{
"_initiator": {
"type": "parser",
"url": "https://g.eags.us/fnaw/",
"lineNumber": 25
},
"_priority": "VeryHigh",
"_resourceType": "stylesheet",
"cache": {},
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://fonts.googleapis.com/css?family=VT323",
"httpVersion": "h3",
"headers": [
{
"name": ":authority",
"value": "fonts.googleapis.com"
},
{
"name": ":method",
"value": "GET"
},
{
"name": ":path",
"value": "/css?family=VT323"
},
{
"name": ":scheme",
"value": "https"
},
{
"name": "accept",
"value": "text/css,*/*;q=0.1"
},
{
"name": "accept-encoding",
"value": "gzip, deflate, br"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.9"
},
{
"name": "cache-control",
"value": "no-cache"
},
{
"name": "pragma",
"value": "no-cache"
},
{
"name": "referer",
"value": "https://g.eags.us/"
},
{
"name": "sec-ch-ua",
"value": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"100\", \"Google Chrome\";v=\"100\""
},
{
"name": "sec-ch-ua-mobile",
"value": "?0"
},
{
"name": "sec-ch-ua-platform",
"value": "\"Windows\""
},
{
"name": "sec-fetch-dest",
"value": "style"
},
{
"name": "sec-fetch-mode",
"value": "no-cors"
},
{
"name": "sec-fetch-site",
"value": "cross-site"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36"
},
{
"name": "x-client-data",
"value": "CIa2yQEIpLbJAQjBtskBCKmdygEIhtLKAQiUocsBCJ75ywEI5oTMAQibj8wBCM+izAE="
}
],
"queryString": [
{
"name": "family",
"value": "VT323"
}
],
"cookies": [],
"headersSize": -1,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "",
"httpVersion": "h3",
"headers": [
{
"name": "access-control-allow-origin",
"value": "*"
},
{
"name": "alt-svc",
"value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""
},
{
"name": "cache-control",
"value": "private, max-age=86400, stale-while-revalidate=604800"
},
{
"name": "content-encoding",
"value": "gzip"
},
{
"name": "content-type",
"value": "text/css; charset=utf-8"
},
{
"name": "cross-origin-opener-policy",
"value": "same-origin-allow-popups"
},
{
"name": "cross-origin-resource-policy",
"value": "cross-origin"
},
{
"name": "date",
"value": "Sat, 09 Apr 2022 16:03:10 GMT"
},
{
"name": "expires",
"value": "Sat, 09 Apr 2022 16:03:10 GMT"
},
{
"name": "last-modified",
"value": "Sat, 09 Apr 2022 15:08:32 GMT"
},
{
"name": "link",
"value": "<https://fonts.gstatic.com>; rel=preconnect; crossorigin"
},
{
"name": "server",
"value": "ESF"
},
{
"name": "strict-transport-security",
"value": "max-age=31536000"
},
{
"name": "timing-allow-origin",
"value": "*"
},
{
"name": "x-content-type-options",
"value": "nosniff"
},
{
"name": "x-frame-options",
"value": "SAMEORIGIN"
},
{
"name": "x-xss-protection",
"value": "0"
}
],
"cookies": [],
"content": {
"size": 981,
"mimeType": "text/css",
"text": "/* vietnamese */\n@font-face {\n font-family: 'VT323';\n font-style: normal;\n font-weight: 400;\n src: url(https://fonts.gstatic.com/s/vt323/v15/pxiKyp0ihIEF2isQFJXGdg.woff2) format('woff2');\n unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n font-family: 'VT323';\n font-style: normal;\n font-weight: 400;\n src: url(https://fonts.gstatic.com/s/vt323/v15/pxiKyp0ihIEF2isRFJXGdg.woff2) format('woff2');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'VT323';\n font-style: normal;\n font-weight: 400;\n src: url(https://fonts.gstatic.com/s/vt323/v15/pxiKyp0ihIEF2isfFJU.woff2) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n"
},
"redirectURL": "",
"headersSize": -1,
"bodySize": -1,
"_transferSize": 414,
"_error": null
},
"serverIPAddress": "[2607:f8b0:4002:c02::5f]",
"startedDateTime": "2022-04-09T16:02:26.072Z",
"time": 15.476000029593706,
"timings": {
"blocked": 2.7010000826641916,
"dns": -1,
"ssl": -1,
"connect": -1,
"send": 0.2310000000000001,
"wait": 11.475999963723122,
"receive": 1.0679999832063913,
"_blocked_queueing": 0.7600000826641917
}
},
{
"_initiator": {
"type": "parser",
"url": "https://g.eags.us/fnaw/",
"lineNumber": 28
},
"_priority": "High",
"_resourceType": "script",
"cache": {},
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://g.eags.us/runtime.js",
"httpVersion": "h3",
"headers": [
{
"name": ":authority",
"value": "g.eags.us"
},
{
"name": ":method",
"value": "GET"
},
{
"name": ":path",
"value": "/runtime.js"
},
{
"name": ":scheme",
"value": "https"
},
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-encoding",
"value": "gzip, deflate, br"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.9"
},
{
"name": "cache-control",
"value": "no-cache"
},
{
"name": "cookie",
"value": "phpbb3_4xdki_u=369; phpbb3_4xdki_k=njc2q2x7i3tcqu2j; phpbb3_4xdki_sid=3b45c9ce7b7eb853d1c12f984d56cde4"
},
{
"name": "pragma",
"value": "no-cache"
},
{
"name": "referer",
"value": "https://g.eags.us/fnaw/"
},
{
"name": "sec-ch-ua",
"value": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"100\", \"Google Chrome\";v=\"100\""
},
{
"name": "sec-ch-ua-mobile",
"value": "?0"
},
{
"name": "sec-ch-ua-platform",
"value": "\"Windows\""
},
{
"name": "sec-fetch-dest",
"value": "script"
},
{
"name": "sec-fetch-mode",
"value": "no-cors"
},
{
"name": "sec-fetch-site",
"value": "same-origin"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36"
}
],
"queryString": [],
"cookies": [
{
"name": "phpbb3_4xdki_u",
"value": "369",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_k",
"value": "njc2q2x7i3tcqu2j",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_sid",
"value": "3b45c9ce7b7eb853d1c12f984d56cde4",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
}
],
"headersSize": -1,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "",
"httpVersion": "h3",
"headers": [
{
"name": "access-control-allow-credentials",
"value": "true"
},
{
"name": "access-control-allow-headers",
"value": "DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization"
},
{
"name": "access-control-allow-methods",
"value": "GET, POST, OPTIONS"
},
{
"name": "access-control-allow-origin",
"value": "*"
},
{
"name": "age",
"value": "6960"
},
{
"name": "alt-svc",
"value": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"
},
{
"name": "cache-control",
"value": "max-age=10800"
},
{
"name": "cf-cache-status",
"value": "HIT"
},
{
"name": "cf-ray",
"value": "6f9478a9891863d2-ATL"
},
{
"name": "content-encoding",
"value": "br"
},
{
"name": "content-security-policy",
"value": "frame-ancestors *"
},
{
"name": "content-security-policy",
"value": "upgrade-insecure-requests"
},
{
"name": "content-type",
"value": "application/javascript"
},
{
"name": "date",
"value": "Sat, 09 Apr 2022 16:03:10 GMT"
},
{
"name": "etag",
"value": "W/\"61f83a56-416f\""
},
{
"name": "expect-ct",
"value": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
},
{
"name": "expires",
"value": "Thu, 17 Mar 2022 23:28:01 GMT"
},
{
"name": "last-modified",
"value": "Mon, 31 Jan 2022 19:36:54 GMT"
},
{
"name": "nel",
"value": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "report-to",
"value": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=A6xtwjLFpuLRjTZEJ3%2FwzL3Az%2FJ8TNv7M1SngaJoGqu8SA4e3fCVcBESgmynBYYSrq%2BhcFAGC0WPHnU3XkcPJBXttVcHa%2BwLthfQ3CsK2lWanIWROQVgmjiDBu4nSUOTmp7Lln0MYTk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "server",
"value": "cloudflare"
},
{
"name": "vary",
"value": "Accept-Encoding"
},
{
"name": "x-content-type-options",
"value": "nosniff"
},
{
"name": "x-frame-options",
"value": "DENY"
}
],
"cookies": [],
"content": {
"size": 16751,
"mimeType": "application/javascript",
"text": "(function(_0x10eca0,_0x1a304f){const _0x153ee3=_0x10eca0();function _0x5b3786(_0x15f987,_0xad56d3,_0x4a73cb,_0x1427e2,_0x3bb6c8){return _0x60a2(_0x15f987-0x80,_0x1427e2);}function _0xe59395(_0x550a20,_0x22c8e4,_0x27c62a,_0x3b9102,_0x3616ce){return _0x60a2(_0x22c8e4- -0x381,_0x3616ce);}function _0x4b6992(_0x4fe57a,_0x257fe0,_0x51bf5d,_0x2e24f6,_0x5a60af){return _0x60a2(_0x257fe0- -0x22e,_0x2e24f6);}function _0x237a92(_0x7b2ccd,_0x5a7e31,_0x1fdc33,_0x5afcf6,_0x3dddbc){return _0x60a2(_0x7b2ccd- -0x2b3,_0x5a7e31);}function _0x5a9eaa(_0x5b167f,_0x3645c0,_0x1967ba,_0x57b33f,_0x1310af){return _0x60a2(_0x3645c0-0xc7,_0x57b33f);}while(!![]){try{const _0x54efca=parseInt(_0x4b6992(-0xb4,-0x9f,-0xc9,-0x71,-0xc5))/(0x130b+-0x156d+0x263)*(parseInt(_0x4b6992(-0x94,-0x8e,-0x92,-0xb3,-0x6a))/(-0x3*-0x449+-0x2*-0xfec+-0x11*0x2a1))+-parseInt(_0x237a92(-0x111,-0x13c,-0x13d,-0x125,-0x123))/(-0x2192+-0x1795+0x12*0x32d)+parseInt(_0x5a9eaa(0x2a9,0x2a4,0x28c,0x283,0x2d1))/(0x165a+0x1b0d+-0x10d*0x2f)*(-parseInt(_0x4b6992(-0xa6,-0x85,-0x6e,-0xb0,-0x55))/(-0x313*0x3+-0x1e7a+0x4*0x9ee))+parseInt(_0xe59395(-0x1c9,-0x1b9,-0x18f,-0x1ca,-0x1b9))/(-0x2045+-0xaa8*0x1+0x2af3)*(-parseInt(_0x4b6992(-0x6d,-0x4f,-0x44,-0x32,-0x70))/(-0x1e9d+-0x4*-0x434+-0x2c4*-0x5))+-parseInt(_0x237a92(-0xd5,-0xf2,-0xd1,-0xc6,-0xc7))/(-0x7*0x173+-0xf26*0x1+-0x1*-0x1953)*(-parseInt(_0x5a9eaa(0x26d,0x275,0x27e,0x24b,0x253))/(-0x3d9+0xaca+-0x6e8))+-parseInt(_0x5b3786(0x210,0x213,0x23a,0x208,0x23a))/(0x2*0x2d3+0x9a*0x26+0x2*-0xe3c)+parseInt(_0x4b6992(-0x47,-0x77,-0x47,-0x52,-0x71))/(0x2297+0x1*0x994+-0x8*0x584);if(_0x54efca===_0x1a304f)break;else _0x153ee3['push'](_0x153ee3['shift']());}catch(_0x3faea9){_0x153ee3['push'](_0x153ee3['shift']());}}}(_0x207f,0x68e61*-0x2+0x8424+0x16a560));const _0x2bf0d4=(function(){let _0x5a92e9=!![];return function(_0x3d219e,_0x20bc59){const _0xbbc710=_0x5a92e9?function(){function _0x38cef9(_0x36ae69,_0x5845de,_0x50d152,_0x41769d,_0x4592bd){return _0x60a2(_0x4592bd-0x2ef,_0x36ae69);}if(_0x20bc59){const _0x5f0c08=_0x20bc59[_0x38cef9(0x49b,0x484,0x490,0x46d,0x48a)](_0x3d219e,arguments);return _0x20bc59=null,_0x5f0c08;}}:function(){};return _0x5a92e9=![],_0xbbc710;};}()),_0x593e6c=_0x2bf0d4(this,function(){const _0x3f97f1={'yqXNO':function(_0x46f959,_0x3bcb56){return _0x46f959!=_0x3bcb56;},'HMLNe':function(_0x3d2e5e,_0x31419e){return _0x3d2e5e<_0x31419e;},'GoXcv':function(_0x3ed857,_0x5c841f){return _0x3ed857==_0x5c841f;},'mjXTY':function(_0x4ec1e1,_0x3cd7bb){return _0x4ec1e1+_0x3cd7bb;},'xJBGl':function(_0x1d390b,_0x14e023,_0x4daf25,_0x427dca){return _0x1d390b(_0x14e023,_0x4daf25,_0x427dca);},'wVEnb':function(_0x2105a1,_0x20b6ab){return _0x2105a1(_0x20b6ab);},'gWGko':_0x29dda0(0xf0,0xe0,0xcd,0xf4,0xce)+_0x262437(-0x173,-0x1a2,-0x1a6,-0x180,-0x1a7)+_0x29dda0(0x11f,0x133,0x126,0x117,0x10f)+_0x5d8d62(0xfa,0xaa,0xd3,0xf9,0xcb),'CoFBP':_0x29cb9a(0x17b,0x167,0x145,0x14b,0x189)+_0x262437(-0x136,-0x171,-0x167,-0x160,-0x145)+_0x5d8d62(0xba,0xc0,0xa4,0x9a,0x7a)+_0x5d8d62(0xda,0xda,0xe1,0xf6,0xcf)+_0x262437(-0x178,-0x159,-0x180,-0x165,-0x136)+_0x29dda0(0xff,0xce,0xee,0xfa,0xfc)+'\\x20)','kYbNk':function(_0x2f802d){return _0x2f802d();},'dZgWL':_0x58dee4(-0xe2,-0xb2,-0xb7,-0x90,-0xe6)+_0x29cb9a(0x159,0x161,0x158,0x17e,0x186)+_0x29cb9a(0x152,0x155,0x16d,0x16a,0x17b)+_0x5d8d62(0xe5,0xb0,0xb7,0x93,0xd5)+_0x262437(-0x187,-0x14d,-0x146,-0x15a,-0x16c),'dKfWF':_0x29cb9a(0x154,0x165,0x17b,0x165,0x139)+_0x29dda0(0x139,0x127,0x14a,0x124,0x14c)+_0x29cb9a(0x150,0x166,0x18e,0x14d,0x171)+_0x5d8d62(0x101,0xe3,0xee,0xfa,0xee)+_0x29cb9a(0x131,0x12f,0x130,0x152,0x120)+_0x262437(-0x143,-0x122,-0x101,-0x131,-0x12f)+'D','PmMzy':function(_0x525db7,_0x2cf9aa,_0x384148,_0x1b5a4b){return _0x525db7(_0x2cf9aa,_0x384148,_0x1b5a4b);},'aeiho':function(_0x28e6fc,_0x2429bf){return _0x28e6fc>_0x2429bf;},'WxVnx':function(_0xc3a585,_0x446830,_0x59e083,_0x3e0bff){return _0xc3a585(_0x446830,_0x59e083,_0x3e0bff);},'PeLmX':function(_0x89ad84,_0x169981){return _0x89ad84||_0x169981;},'LDVSG':function(_0x2149e2,_0x3f977f){return _0x2149e2<_0x3f977f;},'nKLDz':function(_0x1f3bfd,_0x5815b1){return _0x1f3bfd===_0x5815b1;},'sfTjP':function(_0x15bf6b,_0x383752){return _0x15bf6b-_0x383752;},'pKsPv':function(_0x271b4a,_0x372c5e){return _0x271b4a!==_0x372c5e;},'ggCht':function(_0x270c3c,_0x126b0b){return _0x270c3c===_0x126b0b;},'qYWwI':function(_0x586ac5,_0x56987d){return _0x586ac5==_0x56987d;},'gtbew':function(_0x3900d8,_0x588576){return _0x3900d8===_0x588576;},'fzNVS':_0x58dee4(-0xb0,-0xbb,-0x9b,-0x8d,-0xaf)+_0x58dee4(-0xa4,-0x6c,-0x7f,-0x69,-0x70)+_0x29dda0(0x12b,0x13b,0x12a,0x135,0x12f)+_0x262437(-0x162,-0x16b,-0x172,-0x182,-0x177)+_0x262437(-0x12a,-0x144,-0x123,-0x13d,-0x134)+_0x58dee4(-0x95,-0x77,-0x9e,-0xc3,-0x91)+'j]','KTHWE':_0x29cb9a(0x15a,0x144,0x16e,0x167,0x15f)+_0x29cb9a(0x15e,0x149,0x16b,0x173,0x13a)+_0x5d8d62(0xc7,0x118,0xf1,0xd0,0xe4)+_0x29dda0(0xf8,0x11e,0xfe,0x115,0x126)+_0x262437(-0x111,-0x14d,-0x119,-0x126,-0xff)+_0x29cb9a(0x112,0x131,0x13c,0x122,0x120)+_0x58dee4(-0x77,-0x7f,-0x84,-0x57,-0x9f)+_0x58dee4(-0xb3,-0x80,-0x9e,-0xca,-0x89)+'j'};let _0x3cf996;try{const _0x424f5a=_0x3f97f1[_0x5d8d62(0xa8,0x7d,0xab,0xd5,0xc0)](Function,_0x3f97f1[_0x29dda0(0xe6,0x13c,0x136,0x112,0x11b)](_0x3f97f1[_0x262437(-0x170,-0x140,-0x11a,-0x149,-0x164)](_0x3f97f1[_0x5d8d62(0xa1,0xaa,0xbd,0xd2,0xdb)],_0x3f97f1[_0x58dee4(-0x8f,-0xb1,-0xa2,-0x9b,-0xbd)]),');'));_0x3cf996=_0x3f97f1[_0x29cb9a(0x12c,0x139,0x12d,0x164,0x133)](_0x424f5a);}catch(_0x9e439d){_0x3cf996=window;}const _0x59df69=new RegExp(_0x3f97f1[_0x29cb9a(0x185,0x180,0x156,0x19d,0x15b)],'g'),_0x486187=_0x3f97f1[_0x29cb9a(0x10c,0x13c,0x166,0x12b,0x135)][_0x29cb9a(0x186,0x18a,0x18b,0x198,0x1aa)+'ce'](_0x59df69,'')[_0x29cb9a(0x163,0x15e,0x187,0x178,0x183)](';');let _0x1b39ec,_0xe8f81c,_0x2cbd7e,_0xa0447d;const _0xb27403=function(_0x25a0e5,_0x24c382,_0x49355a){function _0x4feacb(_0x361148,_0x26386f,_0x1e274d,_0xe94fed,_0x3d02ad){return _0x58dee4(_0x361148-0x180,_0x26386f-0xf6,_0x3d02ad-0x515,_0x1e274d,_0x3d02ad-0x8f);}function _0x4bb3bf(_0x427392,_0x23d804,_0x2b3319,_0x1e9c87,_0xe0de81){return _0x262437(_0x427392-0x4e,_0x23d804-0x1eb,_0x2b3319,_0x23d804-0x1a5,_0xe0de81-0xfb);}function _0x5bf9da(_0x35d56e,_0x3a5724,_0x2f86ac,_0x11ef4b,_0x4c9a93){return _0x29dda0(_0x35d56e,_0x3a5724-0x11e,_0x2f86ac-0x1cc,_0x3a5724- -0x2a,_0x4c9a93-0x92);}function _0x50772b(_0x5e2305,_0x49317d,_0x4d71fd,_0x56deac,_0x269f60){return _0x29cb9a(_0x56deac,_0x269f60- -0xa0,_0x4d71fd-0x16b,_0x56deac-0x41,_0x269f60-0x160);}function _0x361f07(_0x208bfa,_0xa4905f,_0xa1dc8e,_0x102f53,_0x35046f){return _0x58dee4(_0x208bfa-0x84,_0xa4905f-0xcd,_0x102f53-0x286,_0x35046f,_0x35046f-0xe6);}if(_0x3f97f1[_0x5bf9da(0xe1,0xea,0xec,0xe4,0xf2)](_0x25a0e5[_0x5bf9da(0xdf,0xf7,0x100,0xf5,0xf2)+'h'],_0x24c382))return![];for(let _0x2379a8=0x61b+-0x266f+0x2054;_0x3f97f1[_0x361f07(0x1ed,0x1d0,0x1cb,0x1c6,0x1db)](_0x2379a8,_0x24c382);_0x2379a8++){for(let _0x654580=0x114e+-0x1fcc+-0x2*-0x73f;_0x3f97f1[_0x4feacb(0x46f,0x442,0x433,0x434,0x455)](_0x654580,_0x49355a[_0x50772b(0xde,0x100,0xe9,0xcf,0xd9)+'h']);_0x654580+=0x1e2d+-0x2224+-0x3*-0x153){if(_0x3f97f1[_0x4bb3bf(0x63,0x3c,0x39,0x11,0x30)](_0x2379a8,_0x49355a[_0x654580])&&_0x3f97f1[_0x4feacb(0x4a3,0x45d,0x49e,0x484,0x487)](_0x25a0e5[_0x50772b(0xc6,0xc4,0xc8,0x84,0xb0)+_0x5bf9da(0xdf,0xb0,0x98,0xa1,0xa2)](_0x2379a8),_0x49355a[_0x3f97f1[_0x50772b(0xbb,0xd0,0xc8,0xef,0xca)](_0x654580,0x776+-0xc0f+0x49a)]))return![];}}return!![];},_0x31a494=function(_0x266843,_0x3c8216,_0x39e42b){function _0xcc76c4(_0xd13668,_0xdc00a4,_0x564493,_0x4d5c7a,_0x249710){return _0x29dda0(_0xdc00a4,_0xdc00a4-0x16b,_0x564493-0xb7,_0x564493-0x2cc,_0x249710-0x12a);}return _0x3f97f1[_0xcc76c4(0x40b,0x3e2,0x3ff,0x402,0x403)](_0xb27403,_0x3c8216,_0x39e42b,_0x266843);};function _0x29cb9a(_0x569d8e,_0x518c60,_0x2bc06c,_0x203500,_0x271e2c){return _0x60a2(_0x518c60- -0x5a,_0x569d8e);}const _0x3463ae=function(_0x2b18bc,_0x4b5fb1,_0x391935){function _0x316113(_0x221a4c,_0x490875,_0x4538c4,_0x3d7c5c,_0x53c1be){return _0x58dee4(_0x221a4c-0xa,_0x490875-0xde,_0x221a4c-0x3ef,_0x490875,_0x53c1be-0x1e9);}return _0x3f97f1[_0x316113(0x380,0x3ac,0x39c,0x38c,0x35c)](_0x31a494,_0x4b5fb1,_0x2b18bc,_0x391935);},_0x19a5e0=function(_0x2875bf,_0x1b56ca,_0x424e80){function _0x790241(_0x210334,_0x2bbdd7,_0x266fc4,_0x3b5461,_0x5e324e){return _0x262437(_0x210334-0x131,_0x2bbdd7-0x58,_0x3b5461,_0x5e324e-0x42e,_0x5e324e-0x62);}return _0x3f97f1[_0x790241(0x2e8,0x30c,0x2fd,0x333,0x306)](_0x3463ae,_0x1b56ca,_0x424e80,_0x2875bf);};for(let _0x59f625 in _0x3cf996){if(_0x3f97f1[_0x29cb9a(0x154,0x13d,0x155,0x131,0x112)](_0xb27403,_0x59f625,0x136a+-0x1*0x108c+-0x2d6,[0x3f8*0x7+0x15f8+-0x1*0x31b9,-0x75*0x47+-0xc*-0x284+0x2b7,0xcc0+-0x1*-0x13b5+-0x568*0x6,-0x2*-0xcdf+0xd54+-0x26ad*0x1,-0x1*-0x8e9+0x21fc+-0x2ae2,0x1*0x10f6+-0x4c3*0x7+0x2*0x86a,-0x1ab6+-0xa*0x14+-0x1b7e*-0x1,-0x10b4+-0x1c89+0x2da1])){_0x1b39ec=_0x59f625;break;}}for(let _0x162348 in _0x3cf996[_0x1b39ec]){if(_0x3f97f1[_0x5d8d62(0x7f,0x7f,0xad,0x92,0x8c)](_0x19a5e0,-0x25b*0x9+0x728+0xe11*0x1,_0x162348,[0x1*-0x682+0x1*-0x295+0xb*0xd4,-0x13*-0x119+-0xc5c+-0x811,0x526+-0x26d8+-0x2*-0x10d9,-0x6*-0x52+-0x3d7+0x24f])){_0xe8f81c=_0x162348;break;}}for(let _0x24a076 in _0x3cf996[_0x1b39ec]){if(_0x3f97f1[_0x5d8d62(0xcc,0xc9,0xad,0x7d,0x97)](_0x3463ae,_0x24a076,[0x2000+-0x4*0x87c+-0x1*-0x1f7,0xd0b+0x2b0*-0x6+0x1*0x383,0x752+-0x25*0x65+-0x51*-0x17,-0xb99+-0x1*-0x3df+-0xe*-0x95],0x22e2+-0x19b*-0x2+-0x570*0x7)){_0x2cbd7e=_0x24a076;break;}}if(!_0x3f97f1[_0x262437(-0x14e,-0x177,-0x157,-0x15c,-0x156)]('~',_0xe8f81c))for(let _0x1c44ab in _0x3cf996[_0x1b39ec][_0x2cbd7e]){if(_0x3f97f1[_0x29dda0(0xf4,0x124,0x11f,0xfe,0xfe)](_0x31a494,[-0x1*-0x14e3+0x1cbe+-0x7*0x716,0x317*0xb+0xef5+0x308d*-0x1,-0x1*-0xfdd+-0x8fb*0x4+0x140f,0x3d*-0x6d+-0x215+0x1c76*0x1],_0x1c44ab,-0x1347+0x1d6f+-0x6c*0x18)){_0xa0447d=_0x1c44ab;break;}}if(!_0x1b39ec||!_0x3cf996[_0x1b39ec])return;const _0x39c74b=_0x3cf996[_0x1b39ec][_0xe8f81c];function _0x5d8d62(_0x1cf157,_0x1c9f3a,_0x27d950,_0x35abb9,_0x17be3b){return _0x60a2(_0x27d950- -0xea,_0x1cf157);}function _0x262437(_0x397b63,_0xd82a4c,_0x15aed2,_0x5be961,_0x1b8a89){return _0x60a2(_0x5be961- -0x30d,_0x15aed2);}const _0x291f1e=!!_0x3cf996[_0x1b39ec][_0x2cbd7e]&&_0x3cf996[_0x1b39ec][_0x2cbd7e][_0xa0447d],_0x1dea35=_0x3f97f1[_0x262437(-0x123,-0x146,-0x16c,-0x148,-0x152)](_0x39c74b,_0x291f1e);function _0x58dee4(_0x1ce956,_0x3ffd4b,_0x54b891,_0x413d38,_0x5b0c49){return _0x60a2(_0x54b891- -0x254,_0x413d38);}if(!_0x1dea35)return;function _0x29dda0(_0x561d2,_0x66518c,_0x3baa9f,_0x393b1e,_0x10619f){return _0x60a2(_0x393b1e- -0xb2,_0x561d2);}let _0x140487=![];for(let _0x4041a0=-0x1eb9+-0x1*0x1ac3+-0x397c*-0x1;_0x3f97f1[_0x262437(-0x13e,-0x14a,-0x102,-0x12d,-0x15b)](_0x4041a0,_0x486187[_0x29dda0(0xf9,0x12e,0x12b,0x121,0x148)+'h']);_0x4041a0++){const _0x26df27=_0x486187[_0x4041a0],_0x35c690=_0x3f97f1[_0x58dee4(-0x95,-0xbd,-0x98,-0xad,-0x94)](_0x26df27[-0x6ed+0x11c1+-0x16*0x7e],String[_0x29cb9a(0x16b,0x160,0x132,0x165,0x157)+_0x29cb9a(0x197,0x178,0x17f,0x18e,0x17d)+'de'](-0x736+-0x1a0+-0x2*-0x482))?_0x26df27[_0x29cb9a(0x146,0x137,0x157,0x163,0x142)](0xb9*0x2f+-0x17c3+-0xa33):_0x26df27,_0x5d3283=_0x3f97f1[_0x5d8d62(0xda,0xc2,0xe2,0xfc,0xde)](_0x1dea35[_0x29dda0(0x113,0x12f,0x105,0x121,0x146)+'h'],_0x35c690[_0x29cb9a(0x17c,0x179,0x161,0x18d,0x1a8)+'h']),_0x5affb4=_0x1dea35[_0x58dee4(-0x92,-0xbf,-0xb5,-0xae,-0xc8)+'Of'](_0x35c690,_0x5d3283),_0x87829e=_0x3f97f1[_0x58dee4(-0xa0,-0xb3,-0x86,-0x96,-0x77)](_0x5affb4,-(-0xdf1+-0x1*0x1369+0x215b))&&_0x3f97f1[_0x58dee4(-0x84,-0xa1,-0x87,-0xa0,-0x6c)](_0x5affb4,_0x5d3283);_0x87829e&&((_0x3f97f1[_0x58dee4(-0xe7,-0xbd,-0xbc,-0xe5,-0xcb)](_0x1dea35[_0x29dda0(0x148,0x11b,0x14a,0x121,0x110)+'h'],_0x26df27[_0x58dee4(-0x89,-0x75,-0x81,-0x9f,-0x5d)+'h'])||_0x3f97f1[_0x29dda0(0xf4,0xd8,0xec,0xd8,0x104)](_0x26df27[_0x29dda0(0xd9,0xfd,0x113,0xed,0x111)+'Of']('.'),0x551*0x1+0x8e8+0x14b*-0xb))&&(_0x140487=!![]));}if(!_0x140487){const _0x3b86ec=new RegExp(_0x3f97f1[_0x58dee4(-0x7d,-0x66,-0x6e,-0x46,-0x9d)],'g'),_0x286f25=_0x3f97f1[_0x58dee4(-0x8c,-0x8f,-0xa9,-0x9b,-0xc0)][_0x5d8d62(0xd5,0x118,0xfa,0xea,0xeb)+'ce'](_0x3b86ec,'');_0x3cf996[_0x1b39ec][_0x2cbd7e]=_0x286f25;}});_0x593e6c();const w=window,tags=new Array(),tg=w[_0x818ec4(0x410,0x3eb,0x42d,0x423,0x402)];function _0x818ec4(_0x1e1741,_0xa87351,_0x5f3a3e,_0x302f1d,_0x3893f9){return _0x60a2(_0x1e1741-0x23c,_0x3893f9);}if(tg)for(var i=-0x1c*0xef+-0xff3+0x2a17;i<tg[_0xa58a6d(0x218,0x215,0x23d,0x21f,0x24d)+'h'];++i){tags[_0xa58a6d(0x22d,0x1f4,0x1ff,0x21b,0x244)](tg[i]);}w[_0xa58a6d(0x238,0x210,0x24e,0x220,0x22a)]=undefined;const ar=new Map();function _0x1c9d24(_0x235ef0,_0x4fde09,_0x943d9,_0x4947cc,_0x1526bc){return _0x60a2(_0x4947cc-0x269,_0x943d9);}const ls=w[_0x1c9d24(0x40f,0x3eb,0x3eb,0x403,0x42e)+_0xa58a6d(0x228,0x1dc,0x1d8,0x201,0x21e)+'ge'];function _0x7cd167(_0x2515c1,_0x1805dd,_0x4aaeab,_0x508c9b,_0x31af3c){return _0x60a2(_0x1805dd-0x36d,_0x31af3c);}for(var i=-0xb3*-0x13+0x538+-0x1281;i<ls[_0xa58a6d(0x23a,0x207,0x215,0x21f,0x21a)+'h'];++i){const k=ls[_0x2cbf95(0x2b1,0x29a,0x2b1,0x293,0x2ca)](i);var f=![];for(var j=-0x7a9*0x1+-0x16f9+0x1ea2*0x1;j<tags[_0x7cd167(0x54d,0x540,0x51a,0x52b,0x56d)+'h'];++j){if(k[_0x7cd167(0x560,0x54f,0x558,0x555,0x540)+_0x818ec4(0x41f,0x442,0x41b,0x44d,0x3f0)](tags[j])){f=!![];break;}}if(f)continue;ar[_0x1c9d24(0x441,0x45a,0x44e,0x43a,0x45d)](k,ls[_0x818ec4(0x415,0x3ec,0x43d,0x3ed,0x410)+'em'](k));}function _0xa58a6d(_0xbfe143,_0x5369eb,_0x41ba67,_0x4f1ca5,_0xf0f789){return _0x60a2(_0x4f1ca5-0x4c,_0x5369eb);}function _0x60a2(_0x41b78c,_0x20bec5){const _0xde3253=_0x207f();return _0x60a2=function(_0x5ba489,_0x4db8da){_0x5ba489=_0x5ba489-(0x90f*-0x1+0xec8+-0x430);let _0x78d738=_0xde3253[_0x5ba489];return _0x78d738;},_0x60a2(_0x41b78c,_0x20bec5);}const ulevent=()=>{ar[_0x245308(-0xf3,-0x10b,-0x118,-0x107,-0xf4)+'ch'](function(_0x2ae253,_0x2ceaa1){function _0xd99262(_0xcb0927,_0x38868f,_0x2ae565,_0x4d0439,_0x57d312){return _0x245308(_0xcb0927-0xd1,_0x38868f-0x173,_0x2ae565-0xa7,_0x2ae565,_0x57d312- -0x8e);}ls[_0xd99262(-0x173,-0x165,-0x195,-0x16d,-0x16e)+'em'](_0x2ceaa1,_0x2ae253);});function _0x245308(_0x536186,_0x499a14,_0x5f3f5,_0x5dbbaa,_0x4e6f09){return _0x2cbf95(_0x536186-0x73,_0x5dbbaa,_0x4e6f09- -0x3cf,_0x5dbbaa-0x174,_0x4e6f09-0x131);}return!![];};function _0x207f(){const _0x21cd13=['agkli','{}.co','oreun','forEa','mjXTY','PeLmX','yqXNO','nkYHZ','430068MKhLCc','nctio','onbef','\\x22retu','sfTjP','ggCht','pKsPv','push','WWJqS','set','harCo','lengt','tag','vhYHZ','XQw.e','setIt','Hs.Hu','getIt','dZgWL','bvlha','mKIjI','45996wkpWct','44432DgcbGe','63nYIsCn','LDVSG','addEv','start','sWith','repla','xJBGl','fzNVS','ZfiQP','AvsYT','gtbew','HAEAe','odeAt','n\\x20(fu','ctor(','9821MFHWfx','8454350QdGlyB','slice','entLi','kYbNk','HMLNe','wVEnb','dKfWF','PmMzy','qYWwI','key','local','apply','dRuLL','[nJrh','ajVbo','index','218NnfFeK','YTmKI','2847102IPCdIq','Jfut:','GoXcv','stene','retur','gWGko','rn\\x20th','25TBzgRU','charC','KTHWE','is\\x22)(','nstru','1584YqjdMn','iHHAv','WxVnx','aeiho','CoFBP','jID]','load','Stora','vrELW','12184689HSQAiE','split','[jVJf','fromC','XQwkl','nKLDz','n()\\x20','YQPGe','gnJrh'];_0x207f=function(){return _0x21cd13;};return _0x207f();}function _0x2cbf95(_0x16c49c,_0x3f2ec4,_0x5eceb7,_0x471c7c,_0x1c9cb4){return _0x60a2(_0x5eceb7-0x118,_0x3f2ec4);}w[_0xa58a6d(0x206,0x22f,0x207,0x22d,0x222)+_0x1c9d24(0x425,0x3dc,0x3da,0x3fb,0x40e)+_0xa58a6d(0x213,0x1f0,0x1ce,0x1f1,0x208)+'r'](_0x7cd167(0x530,0x521,0x550,0x511,0x53c),()=>{const _0x1c4e83={'YQPGe':function(_0xf05648){return _0xf05648();},'dRuLL':function(_0x586951,_0x4d9918,_0x5e7a21){return _0x586951(_0x4d9918,_0x5e7a21);}};function _0x4dec7e(_0x42b3b9,_0x384d1a,_0x4db43f,_0x49e136,_0x5eb52c){return _0xa58a6d(_0x42b3b9-0x110,_0x384d1a,_0x4db43f-0x1b5,_0x49e136- -0x26a,_0x5eb52c-0x1a3);}_0x1c4e83[_0x4dec7e(-0x93,-0x84,-0x7b,-0x82,-0x89)](setInterval,()=>{function _0x2c7eef(_0x36c47b,_0x191b19,_0x29bfae,_0x4c570e,_0x577843){return _0x4dec7e(_0x36c47b-0x1ba,_0x4c570e,_0x29bfae-0xe2,_0x36c47b-0x61,_0x577843-0xe9);}function _0x5e4928(_0x5169f5,_0x1b78a3,_0x20a5a8,_0x5039de,_0x5c0cf7){return _0x4dec7e(_0x5169f5-0x5a,_0x5169f5,_0x20a5a8-0x3a,_0x5c0cf7-0x3f7,_0x5c0cf7-0x147);}function _0x5ab818(_0x4aed89,_0x3247ba,_0x3caf4a,_0x275506,_0x3a3041){return _0x4dec7e(_0x4aed89-0xcb,_0x3247ba,_0x3caf4a-0x111,_0x3caf4a-0x2f8,_0x3a3041-0x2b);}w[_0x5ab818(0x2c1,0x2aa,0x2a4,0x2d3,0x299)+_0x2c7eef(0x5,0x1c,0x1a,-0x16,-0x10)+_0x5ab818(0x26b,0x2b5,0x28e,0x26f,0x281)]=_0x41db3a=>{function _0x6c6d71(_0x12042c,_0x358d36,_0x56ab2a,_0x47d55a,_0xbd9e5d){return _0x5e4928(_0x56ab2a,_0x358d36-0x145,_0x56ab2a-0x1ba,_0x47d55a-0xf8,_0x12042c- -0x482);}_0x1c4e83[_0x6c6d71(-0xeb,-0xec,-0x106,-0x100,-0xe2)](ulevent);};},0xa*-0x257+-0x441+0xe5*0x1f);});"
},
"redirectURL": "",
"headersSize": -1,
"bodySize": -1,
"_transferSize": 7297,
"_error": null
},
"serverIPAddress": "[2606:4700:3037::ac43:db86]",
"startedDateTime": "2022-04-09T16:02:26.072Z",
"time": 21.582999965175986,
"timings": {
"blocked": 2.7849999813213944,
"dns": -1,
"ssl": -1,
"connect": -1,
"send": 0.1200000000000001,
"wait": 17.9950000218451,
"receive": 0.6829999620094895,
"_blocked_queueing": 0.8689999813213944
}
},
{
"_initiator": {
"type": "parser",
"url": "https://g.eags.us/fnaw/",
"lineNumber": 29
},
"_priority": "High",
"_resourceType": "script",
"cache": {},
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://g.eags.us/fnaw/untar.js",
"httpVersion": "h3",
"headers": [
{
"name": ":authority",
"value": "g.eags.us"
},
{
"name": ":method",
"value": "GET"
},
{
"name": ":path",
"value": "/fnaw/untar.js"
},
{
"name": ":scheme",
"value": "https"
},
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-encoding",
"value": "gzip, deflate, br"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.9"
},
{
"name": "cache-control",
"value": "no-cache"
},
{
"name": "cookie",
"value": "phpbb3_4xdki_u=369; phpbb3_4xdki_k=njc2q2x7i3tcqu2j; phpbb3_4xdki_sid=3b45c9ce7b7eb853d1c12f984d56cde4"
},
{
"name": "pragma",
"value": "no-cache"
},
{
"name": "referer",
"value": "https://g.eags.us/fnaw/"
},
{
"name": "sec-ch-ua",
"value": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"100\", \"Google Chrome\";v=\"100\""
},
{
"name": "sec-ch-ua-mobile",
"value": "?0"
},
{
"name": "sec-ch-ua-platform",
"value": "\"Windows\""
},
{
"name": "sec-fetch-dest",
"value": "script"
},
{
"name": "sec-fetch-mode",
"value": "no-cors"
},
{
"name": "sec-fetch-site",
"value": "same-origin"
},
{
"name": "user-agent",
"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36"
}
],
"queryString": [],
"cookies": [
{
"name": "phpbb3_4xdki_u",
"value": "369",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_k",
"value": "njc2q2x7i3tcqu2j",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
},
{
"name": "phpbb3_4xdki_sid",
"value": "3b45c9ce7b7eb853d1c12f984d56cde4",
"path": "/",
"domain": ".g.eags.us",
"expires": "2023-03-17T23:25:42.017Z",
"httpOnly": true,
"secure": true
}
],
"headersSize": -1,
"bodySize": 0
},
"response": {
"status": 200,
"statusText": "",
"httpVersion": "h3",
"headers": [
{
"name": "access-control-allow-credentials",
"value": "true"
},
{
"name": "access-control-allow-headers",
"value": "DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization"
},
{
"name": "access-control-allow-methods",
"value": "GET, POST, OPTIONS"
},
{
"name": "access-control-allow-origin",
"value": "*"
},
{
"name": "age",
"value": "8"
},
{
"name": "alt-svc",
"value": "h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"
},
{
"name": "cache-control",
"value": "max-age=10800"
},
{
"name": "cf-cache-status",
"value": "HIT"
},
{
"name": "cf-ray",
"value": "6f9478a9891a63d2-ATL"
},
{
"name": "content-encoding",
"value": "br"
},
{
"name": "content-security-policy",
"value": "frame-ancestors *"
},
{
"name": "content-security-policy",
"value": "upgrade-insecure-requests"
},
{
"name": "content-type",
"value": "application/javascript"
},
{
"name": "date",
"value": "Sat, 09 Apr 2022 16:03:10 GMT"
},
{
"name": "etag",
"value": "W/\"5f67b71e-18e3\""
},
{
"name": "expect-ct",
"value": "max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
},
{
"name": "expires",
"value": "Thu, 17 Mar 2022 23:48:33 GMT"
},
{
"name": "last-modified",
"value": "Sun, 20 Sep 2020 20:10:06 GMT"
},
{
"name": "nel",
"value": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "report-to",
"value": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3hIrmxlypnqWerAOE8IWAE4F5aN%2Bq5o0In5TmV9h42FCQClmQk%2FeSqWjCbH%2B0Noa9cFLGtXF4sJCaMGSizVIv%2Fo9REMHr4GJGO7ffrP6aKJ7v4FUiYVVeNTHeCpKhYDNSzS5h9nWfek%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "server",
"value": "cloudflare"
},
{
"name": "vary",
"value": "Accept-Encoding"
},
{
"name": "x-content-type-options",
"value": "nosniff"
},
{
"name": "x-frame-options",
"value": "DENY"
}
],
"cookies": [],
"content": {
"size": 6371,
"mimeType": "application/javascript",
"text": "!function(e,r){\"function\"==typeof define&&define.amd?define([],r):\"object\"==typeof exports?module.exports=r():e.untar=r()}(this,function(){\"use strict\";function e(e){function r(e){for(var r=0,n=t.length;r<n;++r)t[r](e);a.push(e)}if(\"function\"!=typeof Promise)throw new Error(\"Promise implementation not available in this environment.\");var t=[],a=[],n=new Promise(function(t,a){e(t,a,r)});n.progress=function(e){if(\"function\"!=typeof e)throw new Error(\"cb is not a function.\");for(var r=0,i=a.length;r<i;++r)e(a[r]);return t.push(e),n};var i=n.then;return n.then=function(e,r,t){return i.call(n,e,r),void 0!==t&&n.progress(t),n},n}function r(r){if(!(r instanceof ArrayBuffer))throw new TypeError(\"arrayBuffer is not an instance of ArrayBuffer.\");if(!n.Worker)throw new Error(\"Worker implementation is not available in this environment.\");return new e(function(e,n,i){var o=new Worker(a),s=[];o.onerror=function(e){n(e)},o.onmessage=function(r){switch(r=r.data,r.type){case\"log\":console[r.data.level](\"Worker: \"+r.data.msg);break;case\"extract\":var a=t(r.data);s.push(a),i(a);break;case\"complete\":e(s);break;case\"error\":n(new Error(r.data.message));break;default:n(new Error(\"Unknown message from worker: \"+r.type))}},o.postMessage({type:\"extract\",buffer:r},[r])})}function t(e){return Object.defineProperties(e,o),e}var a,n=window||this,i=n.URL||n.webkitURL,o={blob:{get:function(){return this._blob||(this._blob=new Blob([this.buffer]))}},getBlobUrl:{value:function(){return this._blobUrl||(this._blobUrl=i.createObjectURL(this.blob))}},readAsString:{value:function(){for(var e=this.buffer,r=e.byteLength,t=1,a=new DataView(e),n=[],i=0;i<r;++i){var o=a.getUint8(i*t,!0);n.push(o)}return this._string=String.fromCharCode.apply(null,n)}},readAsJSON:{value:function(){return JSON.parse(this.readAsString())}}};return a=(window||this).URL.createObjectURL(new Blob(['\"use strict\";function UntarWorker(){}function decodeUTF8(e){for(var r=\"\",t=0;t<e.length;){var a=e[t++];if(a>127){if(a>191&&a<224){if(t>=e.length)throw\"UTF-8 decode: incomplete 2-byte sequence\";a=(31&a)<<6|63&e[t]}else if(a>223&&a<240){if(t+1>=e.length)throw\"UTF-8 decode: incomplete 3-byte sequence\";a=(15&a)<<12|(63&e[t])<<6|63&e[++t]}else{if(!(a>239&&a<248))throw\"UTF-8 decode: unknown multibyte start 0x\"+a.toString(16)+\" at index \"+(t-1);if(t+2>=e.length)throw\"UTF-8 decode: incomplete 4-byte sequence\";a=(7&a)<<18|(63&e[t])<<12|(63&e[++t])<<6|63&e[++t]}++t}if(a<=65535)r+=String.fromCharCode(a);else{if(!(a<=1114111))throw\"UTF-8 decode: code point 0x\"+a.toString(16)+\" exceeds UTF-16 reach\";a-=65536,r+=String.fromCharCode(a>>10|55296),r+=String.fromCharCode(1023&a|56320)}}return r}function PaxHeader(e){this._fields=e}function TarFile(){}function UntarStream(e){this._bufferView=new DataView(e),this._position=0}function UntarFileStream(e){this._stream=new UntarStream(e),this._globalPaxHeader=null}if(UntarWorker.prototype={onmessage:function(e){try{if(\"extract\"!==e.data.type)throw new Error(\"Unknown message type: \"+e.data.type);this.untarBuffer(e.data.buffer)}catch(r){this.postError(r)}},postError:function(e){this.postMessage({type:\"error\",data:{message:e.message}})},postLog:function(e,r){this.postMessage({type:\"log\",data:{level:e,msg:r}})},untarBuffer:function(e){try{for(var r=new UntarFileStream(e);r.hasNext();){var t=r.next();this.postMessage({type:\"extract\",data:t},[t.buffer])}this.postMessage({type:\"complete\"})}catch(a){this.postError(a)}},postMessage:function(e,r){self.postMessage(e,r)}},\"undefined\"!=typeof self){var worker=new UntarWorker;self.onmessage=function(e){worker.onmessage(e)}}PaxHeader.parse=function(e){for(var r=new Uint8Array(e),t=[];r.length>0;){var a=parseInt(decodeUTF8(r.subarray(0,r.indexOf(32)))),n=decodeUTF8(r.subarray(0,a)),i=n.match(/^\\\\d+ ([^=]+)=(.*)\\\\n$/);if(null===i)throw new Error(\"Invalid PAX header data format.\");var s=i[1],o=i[2];0===o.length?o=null:null!==o.match(/^\\\\d+$/)&&(o=parseInt(o));var f={name:s,value:o};t.push(f),r=r.subarray(a)}return new PaxHeader(t)},PaxHeader.prototype={applyHeader:function(e){this._fields.forEach(function(r){var t=r.name,a=r.value;\"path\"===t?(t=\"name\",void 0!==e.prefix&&delete e.prefix):\"linkpath\"===t&&(t=\"linkname\"),null===a?delete e[t]:e[t]=a})}},UntarStream.prototype={readString:function(e){for(var r=1,t=e*r,a=[],n=0;n<e;++n){var i=this._bufferView.getUint8(this.position()+n*r,!0);if(0===i)break;a.push(i)}return this.seek(t),String.fromCharCode.apply(null,a)},readBuffer:function(e){var r;if(\"function\"==typeof ArrayBuffer.prototype.slice)r=this._bufferView.buffer.slice(this.position(),this.position()+e);else{r=new ArrayBuffer(e);var t=new Uint8Array(r),a=new Uint8Array(this._bufferView.buffer,this.position(),e);t.set(a)}return this.seek(e),r},seek:function(e){this._position+=e},peekUint32:function(){return this._bufferView.getUint32(this.position(),!0)},position:function(e){return void 0===e?this._position:void(this._position=e)},size:function(){return this._bufferView.byteLength}},UntarFileStream.prototype={hasNext:function(){return this._stream.position()+4<this._stream.size()&&0!==this._stream.peekUint32()},next:function(){return this._readNextFile()},_readNextFile:function(){var e=this._stream,r=new TarFile,t=!1,a=null,n=e.position(),i=n+512;switch(r.name=e.readString(100),r.mode=e.readString(8),r.uid=parseInt(e.readString(8)),r.gid=parseInt(e.readString(8)),r.size=parseInt(e.readString(12),8),r.mtime=parseInt(e.readString(12),8),r.checksum=parseInt(e.readString(8)),r.type=e.readString(1),r.linkname=e.readString(100),r.ustarFormat=e.readString(6),r.ustarFormat.indexOf(\"ustar\")>-1&&(r.version=e.readString(2),r.uname=e.readString(32),r.gname=e.readString(32),r.devmajor=parseInt(e.readString(8)),r.devminor=parseInt(e.readString(8)),r.namePrefix=e.readString(155),r.namePrefix.length>0&&(r.name=r.namePrefix+r.name)),e.position(i),r.type){case\"0\":case\"\":r.buffer=e.readBuffer(r.size);break;case\"1\":break;case\"2\":break;case\"3\":break;case\"4\":break;case\"5\":break;case\"6\":break;case\"7\":break;case\"g\":t=!0,this._globalPaxHeader=PaxHeader.parse(e.readBuffer(r.size));break;case\"x\":t=!0,a=PaxHeader.parse(e.readBuffer(r.size))}void 0===r.buffer&&(r.buffer=new ArrayBuffer(0));var s=i+r.size;return r.size%512!==0&&(s+=512-r.size%512),e.position(s),t&&(r=this._readNextFile()),null!==this._globalPaxHeader&&this._globalPaxHeader.applyHeader(r),null!==a&&a.applyHeader(r),r}};'])),r});\n"
},
"redirectURL": "",
"headersSize": -1,
"bodySize": -1,
"_transferSize": 3128,
"_error": null
},
"serverIPAddress": "[2606:4700:3037::ac43:db86]",
"startedDateTime": "2022-04-09T16:02:26.073Z",
"time": 21.87299996148795,
"timings": {
"blocked": 2.7340000434145333,
"dns": -1,
"ssl": -1,
"connect": -1,
"send": 0.07600000000000007,
"wait": 17.930000022001565,
"receive": 1.1329998960718513,
"_blocked_queueing": 0.8160000434145331
}
},
{
"_initiator": {
"type": "parser",
"url": "https://g.eags.us/fnaw/",
"lineNumber": 30
},
"_priority": "High",
"_resourceType": "script",
"cache": {},
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://g.eags.us/fnaw/fnaw3.js",
"httpVersion": "h3",
"headers": [
{
"name": ":authority",
"value": "g.eags.us"
},
{
"name": ":method",
"value": "GET"
},
{
"name": ":path",
"value": "/fnaw/fnaw3.js"
},
{
"name": ":scheme",
"value": "https"
},
{
"name": "accept",
"value": "*/*"
},
{
"name": "accept-encoding",
"value": "gzip, deflate, br"
},
{
"name": "accept-language",
"value": "en-US,en;q=0.9"