generated from chobbledotcom/chobble-client
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource_html
More file actions
10815 lines (9319 loc) · 511 KB
/
source_html
File metadata and controls
10815 lines (9319 loc) · 511 KB
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
<!DOCTYPE html>
<html lang="en" >
<head><script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},feature_flags:["soft_nav"],distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"718412109",accountID:"709395",trustKey:"709395",xpid:"UwYOUl9WGwQAVFZVAQIAUQ==",licenseKey:"e799bb56f3",applicationID:"700776377",browserID:"718412109"};;/*! For license information please see nr-loader-spa-1.306.0.min.js.LICENSE.txt */
(()=>{var e,t,r={384:(e,t,r)=>{"use strict";r.d(t,{NT:()=>s,US:()=>u,Zm:()=>a,bQ:()=>d,dV:()=>c,pV:()=>l});var n=r(6154),i=r(1863),o=r(1910);const s={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function a(){return n.gm.NREUM||(n.gm.NREUM={}),void 0===n.gm.newrelic&&(n.gm.newrelic=n.gm.NREUM),n.gm.NREUM}function c(){let e=a();return e.o||(e.o={ST:n.gm.setTimeout,SI:n.gm.setImmediate||n.gm.setInterval,CT:n.gm.clearTimeout,XHR:n.gm.XMLHttpRequest,REQ:n.gm.Request,EV:n.gm.Event,PR:n.gm.Promise,MO:n.gm.MutationObserver,FETCH:n.gm.fetch,WS:n.gm.WebSocket},(0,o.i)(...Object.values(e.o))),e}function d(e,t){let r=a();r.initializedAgents??={},t.initializedAt={ms:(0,i.t)(),date:new Date},r.initializedAgents[e]=t}function u(e,t){a()[e]=t}function l(){return function(){let e=a();const t=e.info||{};e.info={beacon:s.beacon,errorBeacon:s.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),c(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},782:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.pageViewTiming},860:(e,t,r)=>{"use strict";r.d(t,{$J:()=>u,K7:()=>c,P3:()=>d,XX:()=>i,Yy:()=>a,df:()=>o,qY:()=>n,v4:()=>s});const n="events",i="jserrors",o="browser/blobs",s="rum",a="browser/logs",c={ajax:"ajax",genericEvents:"generic_events",jserrors:i,logging:"logging",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",softNav:"soft_navigations",spa:"spa"},d={[c.pageViewEvent]:1,[c.pageViewTiming]:2,[c.metrics]:3,[c.jserrors]:4,[c.spa]:5,[c.ajax]:6,[c.sessionTrace]:7,[c.softNav]:8,[c.sessionReplay]:9,[c.logging]:10,[c.genericEvents]:11},u={[c.pageViewEvent]:s,[c.pageViewTiming]:n,[c.ajax]:n,[c.spa]:n,[c.softNav]:n,[c.metrics]:i,[c.jserrors]:i,[c.sessionTrace]:o,[c.sessionReplay]:o,[c.logging]:a,[c.genericEvents]:"ins"}},944:(e,t,r)=>{"use strict";r.d(t,{R:()=>i});var n=r(3241);function i(e,t){"function"==typeof console.debug&&(console.debug("New Relic Warning: https://github.com/newrelic/newrelic-browser-agent/blob/main/docs/warning-codes.md#".concat(e),t),(0,n.W)({agentIdentifier:null,drained:null,type:"data",name:"warn",feature:"warn",data:{code:e,secondary:t}}))}},993:(e,t,r)=>{"use strict";r.d(t,{A$:()=>o,ET:()=>s,TZ:()=>a,p_:()=>i});var n=r(860);const i={ERROR:"ERROR",WARN:"WARN",INFO:"INFO",DEBUG:"DEBUG",TRACE:"TRACE"},o={OFF:0,ERROR:1,WARN:2,INFO:3,DEBUG:4,TRACE:5},s="log",a=n.K7.logging},1687:(e,t,r)=>{"use strict";r.d(t,{Ak:()=>d,Ze:()=>f,x3:()=>u});var n=r(3241),i=r(7836),o=r(3606),s=r(860),a=r(2646);const c={};function d(e,t){const r={staged:!1,priority:s.P3[t]||0};l(e),c[e].get(t)||c[e].set(t,r)}function u(e,t){e&&c[e]&&(c[e].get(t)&&c[e].delete(t),p(e,t,!1),c[e].size&&h(e))}function l(e){if(!e)throw new Error("agentIdentifier required");c[e]||(c[e]=new Map)}function f(e="",t="feature",r=!1){if(l(e),!e||!c[e].get(t)||r)return p(e,t);c[e].get(t).staged=!0,h(e)}function h(e){const t=Array.from(c[e]);t.every(([e,t])=>t.staged)&&(t.sort((e,t)=>e[1].priority-t[1].priority),t.forEach(([t])=>{c[e].delete(t),p(e,t)}))}function p(e,t,r=!0){const s=e?i.ee.get(e):i.ee,c=o.i.handlers;if(!s.aborted&&s.backlog&&c){if((0,n.W)({agentIdentifier:e,type:"lifecycle",name:"drain",feature:t}),r){const e=s.backlog[t],r=c[t];if(r){for(let t=0;e&&t<e.length;++t)g(e[t],r);Object.entries(r).forEach(([e,t])=>{Object.values(t||{}).forEach(t=>{t[0]?.on&&t[0]?.context()instanceof a.y&&t[0].on(e,t[1])})})}}s.isolatedBacklog||delete c[t],s.backlog[t]=null,s.emit("drain-"+t,[])}}function g(e,t){var r=e[1];Object.values(t[r]||{}).forEach(t=>{var r=e[0];if(t[0]===r){var n=t[1],i=e[3],o=e[2];n.apply(i,o)}})}},1741:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(944),i=r(4261);class o{#e(e,...t){if(this[e]!==o.prototype[e])return this[e](...t);(0,n.R)(35,e)}addPageAction(e,t){return this.#e(i.hG,e,t)}register(e){return this.#e(i.eY,e)}recordCustomEvent(e,t){return this.#e(i.fF,e,t)}setPageViewName(e,t){return this.#e(i.Fw,e,t)}setCustomAttribute(e,t,r){return this.#e(i.cD,e,t,r)}noticeError(e,t){return this.#e(i.o5,e,t)}setUserId(e){return this.#e(i.Dl,e)}setApplicationVersion(e){return this.#e(i.nb,e)}setErrorHandler(e){return this.#e(i.bt,e)}addRelease(e,t){return this.#e(i.k6,e,t)}log(e,t){return this.#e(i.$9,e,t)}start(){return this.#e(i.d3)}finished(e){return this.#e(i.BL,e)}recordReplay(){return this.#e(i.CH)}pauseReplay(){return this.#e(i.Tb)}addToTrace(e){return this.#e(i.U2,e)}setCurrentRouteName(e){return this.#e(i.PA,e)}interaction(e){return this.#e(i.dT,e)}wrapLogger(e,t,r){return this.#e(i.Wb,e,t,r)}measure(e,t){return this.#e(i.V1,e,t)}consent(e){return this.#e(i.Pv,e)}}},1863:(e,t,r)=>{"use strict";function n(){return Math.floor(performance.now())}r.d(t,{t:()=>n})},1910:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(944);const i=new Map;function o(...e){return e.every(e=>{if(i.has(e))return i.get(e);const t="function"==typeof e?e.toString():"",r=t.includes("[native code]"),o=t.includes("nrWrapper");return r||o||(0,n.R)(64,e?.name||t),i.set(e,r),r})}},2555:(e,t,r)=>{"use strict";r.d(t,{D:()=>a,f:()=>s});var n=r(384),i=r(8122);const o={beacon:n.NT.beacon,errorBeacon:n.NT.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0};function s(e){try{return!!e.licenseKey&&!!e.errorBeacon&&!!e.applicationID}catch(e){return!1}}const a=e=>(0,i.a)(e,o)},2614:(e,t,r)=>{"use strict";r.d(t,{BB:()=>s,H3:()=>n,g:()=>d,iL:()=>c,tS:()=>a,uh:()=>i,wk:()=>o});const n="NRBA",i="SESSION",o=144e5,s=18e5,a={STARTED:"session-started",PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},c={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},d={OFF:0,FULL:1,ERROR:2}},2646:(e,t,r)=>{"use strict";r.d(t,{y:()=>n});class n{constructor(e){this.contextId=e}}},2843:(e,t,r)=>{"use strict";r.d(t,{G:()=>o,u:()=>i});var n=r(3878);function i(e,t=!1,r,i){(0,n.DD)("visibilitychange",function(){if(t)return void("hidden"===document.visibilityState&&e());e(document.visibilityState)},r,i)}function o(e,t,r){(0,n.sp)("pagehide",e,t,r)}},3241:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(6154);const i="newrelic";function o(e={}){try{n.gm.dispatchEvent(new CustomEvent(i,{detail:e}))}catch(e){}}},3304:(e,t,r)=>{"use strict";r.d(t,{A:()=>o});var n=r(7836);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())??""}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}return""}}},3333:(e,t,r)=>{"use strict";r.d(t,{$v:()=>u,TZ:()=>n,Xh:()=>c,Zp:()=>i,kd:()=>d,mq:()=>a,nf:()=>s,qN:()=>o});const n=r(860).K7.genericEvents,i=["auxclick","click","copy","keydown","paste","scrollend"],o=["focus","blur"],s=4,a=1e3,c=2e3,d=["PageAction","UserAction","BrowserPerformance"],u={RESOURCES:"experimental.resources",REGISTER:"register"}},3434:(e,t,r)=>{"use strict";r.d(t,{Jt:()=>o,YM:()=>d});var n=r(7836),i=r(5607);const o="nr@original:".concat(i.W),s=50;var a=Object.prototype.hasOwnProperty,c=!1;function d(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");const s="-"===n.charAt(0);for(let a=0;a<t.length;a++){const c=t[a],d=e[c];l(d)||(e[c]=r(d,s?c+n:n,i,c,o))}},r.flag=o,r;function r(t,r,n,c,d){return l(t)?t:(r||(r=""),nrWrapper[o]=t,function(e,t,r){if(Object.defineProperty&&Object.keys)try{return Object.keys(e).forEach(function(r){Object.defineProperty(t,r,{get:function(){return e[r]},set:function(t){return e[r]=t,t}})}),t}catch(e){u([e],r)}for(var n in e)a.call(e,n)&&(t[n]=e[n])}(t,nrWrapper,e),nrWrapper);function nrWrapper(){var o,a,l,f;let h;try{a=this,o=[...arguments],l="function"==typeof n?n(o,a):n||{}}catch(t){u([t,"",[o,a,c],l],e)}i(r+"start",[o,a,c],l,d);const p=performance.now();let g;try{return f=t.apply(a,o),g=performance.now(),f}catch(e){throw g=performance.now(),i(r+"err",[o,a,e],l,d),h=e,h}finally{const e=g-p,t={start:p,end:g,duration:e,isLongTask:e>=s,methodName:c,thrownError:h};t.isLongTask&&i("long-task",[t,a],l,d),i(r+"end",[o,a,f],l,d)}}}function i(r,n,i,o){if(!c||t){var s=c;c=!0;try{e.emit(r,n,i,t,o)}catch(t){u([t,r,n,i],e)}c=s}}}function u(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function l(e){return!(e&&"function"==typeof e&&e.apply&&!e[o])}},3606:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(9908);o.on=s;var i=o.handlers={};function o(e,t,r,o){s(o||n.d,i,e,t,r)}function s(e,t,r,i,o){o||(o="feature"),e||(e=n.d);var s=t[o]=t[o]||{};(s[r]=s[r]||[]).push([e,i])}},3738:(e,t,r)=>{"use strict";r.d(t,{He:()=>i,Kp:()=>a,Lc:()=>d,Rz:()=>u,TZ:()=>n,bD:()=>o,d3:()=>s,jx:()=>l,sl:()=>f,uP:()=>c});const n=r(860).K7.sessionTrace,i="bstResource",o="resource",s="-start",a="-end",c="fn"+s,d="fn"+a,u="pushState",l=1e3,f=3e4},3785:(e,t,r)=>{"use strict";r.d(t,{R:()=>c,b:()=>d});var n=r(9908),i=r(1863),o=r(860),s=r(3969),a=r(993);function c(e,t,r={},c=a.p_.INFO,d=!0,u,l=(0,i.t)()){(0,n.p)(s.xV,["API/logging/".concat(c.toLowerCase(),"/called")],void 0,o.K7.metrics,e),(0,n.p)(a.ET,[l,t,r,c,d,u],void 0,o.K7.logging,e)}function d(e){return"string"==typeof e&&Object.values(a.p_).some(t=>t===e.toUpperCase().trim())}},3878:(e,t,r)=>{"use strict";function n(e,t){return{capture:e,passive:!1,signal:t}}function i(e,t,r=!1,i){window.addEventListener(e,t,n(r,i))}function o(e,t,r=!1,i){document.addEventListener(e,t,n(r,i))}r.d(t,{DD:()=>o,jT:()=>n,sp:()=>i})},3962:(e,t,r)=>{"use strict";r.d(t,{AM:()=>s,O2:()=>l,OV:()=>o,Qu:()=>f,TZ:()=>c,ih:()=>h,pP:()=>a,t1:()=>u,tC:()=>i,wD:()=>d});var n=r(860);const i=["click","keydown","submit"],o="popstate",s="api",a="initialPageLoad",c=n.K7.softNav,d=5e3,u=500,l={INITIAL_PAGE_LOAD:"",ROUTE_CHANGE:1,UNSPECIFIED:2},f={INTERACTION:1,AJAX:2,CUSTOM_END:3,CUSTOM_TRACER:4},h={IP:"in progress",PF:"pending finish",FIN:"finished",CAN:"cancelled"}},3969:(e,t,r)=>{"use strict";r.d(t,{TZ:()=>n,XG:()=>a,rs:()=>i,xV:()=>s,z_:()=>o});const n=r(860).K7.metrics,i="sm",o="cm",s="storeSupportabilityMetrics",a="storeEventMetrics"},4234:(e,t,r)=>{"use strict";r.d(t,{W:()=>o});var n=r(7836),i=r(1687);class o{constructor(e,t){this.agentIdentifier=e,this.ee=n.ee.get(e),this.featureName=t,this.blocked=!1}deregisterDrain(){(0,i.x3)(this.agentIdentifier,this.featureName)}}},4261:(e,t,r)=>{"use strict";r.d(t,{$9:()=>u,BL:()=>c,CH:()=>p,Dl:()=>x,Fw:()=>w,PA:()=>v,Pl:()=>n,Pv:()=>A,Tb:()=>f,U2:()=>s,V1:()=>E,Wb:()=>T,bt:()=>y,cD:()=>b,d3:()=>R,dT:()=>d,eY:()=>g,fF:()=>h,hG:()=>o,hw:()=>i,k6:()=>a,nb:()=>m,o5:()=>l});const n="api-",i=n+"ixn-",o="addPageAction",s="addToTrace",a="addRelease",c="finished",d="interaction",u="log",l="noticeError",f="pauseReplay",h="recordCustomEvent",p="recordReplay",g="register",m="setApplicationVersion",v="setCurrentRouteName",b="setCustomAttribute",y="setErrorHandler",w="setPageViewName",x="setUserId",R="start",T="wrapLogger",E="measure",A="consent"},4387:(e,t,r)=>{"use strict";function n(e={}){return!(!e.id||!e.name)}function i(e){return"string"==typeof e&&e.trim().length<501||"number"==typeof e}function o(e,t){if(2!==t?.harvestEndpointVersion)return{};const r=t.agentRef.runtime.appMetadata.agents[0].entityGuid;return n(e)?{"source.id":e.id,"source.name":e.name,"source.type":e.type,"parent.id":e.parent?.id||r}:{"entity.guid":r,appId:t.agentRef.info.applicationID}}r.d(t,{Ux:()=>o,c7:()=>n,yo:()=>i})},5205:(e,t,r)=>{"use strict";r.d(t,{j:()=>_});var n=r(384),i=r(1741);var o=r(2555),s=r(3333);const a=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var c=r(2614),d=r(944),u=r(8122);const l="[data-nr-mask]",f=e=>(0,u.a)(e,(()=>{const e={feature_flags:[],experimental:{allow_registered_children:!1,resources:!1},mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{ajax:{deny_list:void 0,block_internal:!0,enabled:!0,autoStart:!0},api:{get allow_registered_children(){return e.feature_flags.includes(s.$v.REGISTER)||e.experimental.allow_registered_children},set allow_registered_children(t){e.experimental.allow_registered_children=t},duplicate_registered_data:!1},browser_consent_mode:{enabled:!1},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},get feature_flags(){return e.feature_flags},set feature_flags(t){e.feature_flags=t},generic_events:{enabled:!0,autoStart:!0},harvest:{interval:30},jserrors:{enabled:!0,autoStart:!0},logging:{enabled:!0,autoStart:!0},metrics:{enabled:!0,autoStart:!0},obfuscate:void 0,page_action:{enabled:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,autoStart:!0},performance:{capture_marks:!1,capture_measures:!1,capture_detail:!0,resources:{get enabled(){return e.feature_flags.includes(s.$v.RESOURCES)||e.experimental.resources},set enabled(t){e.experimental.resources=t},asset_types:[],first_party_domains:[],ignore_newrelic:!0}},privacy:{cookies_enabled:!0},proxy:{assets:void 0,beacon:void 0},session:{expiresMs:c.wk,inactiveMs:c.BB},session_replay:{autoStart:!0,enabled:!1,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,fix_stylesheets:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){a(t)?e.mask_selector="".concat(t,",").concat(l):""===t||null===t?e.mask_selector=l:(0,d.R)(5,t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){a(t)?e.block_selector+=",".concat(t):""!==t&&(0,d.R)(6,t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,d.R)(7,t)}},session_trace:{enabled:!0,autoStart:!0},soft_navigations:{enabled:!0,autoStart:!0},spa:{enabled:!0,autoStart:!0},ssl:void 0,user_actions:{enabled:!0,elementAttributes:["id","className","tagName","type"]}}})());var h=r(6154),p=r(9324);let g=0;const m={buildEnv:p.F3,distMethod:p.Xs,version:p.xv,originTime:h.WN},v={consented:!1},b={appMetadata:{},get consented(){return this.session?.state?.consent||v.consented},set consented(e){v.consented=e},customTransaction:void 0,denyList:void 0,disabled:!1,harvester:void 0,isolatedBacklog:!1,isRecording:!1,loaderType:void 0,maxBytes:3e4,obfuscator:void 0,onerror:void 0,ptid:void 0,releaseIds:{},session:void 0,timeKeeper:void 0,registeredEntities:[],jsAttributesMetadata:{bytes:0},get harvestCount(){return++g}},y=e=>{const t=(0,u.a)(e,b),r=Object.keys(m).reduce((e,t)=>(e[t]={value:m[t],writable:!1,configurable:!0,enumerable:!0},e),{});return Object.defineProperties(t,r)};var w=r(5701);const x=e=>{const t=e.startsWith("http");e+="/",r.p=t?e:"https://"+e};var R=r(7836),T=r(3241);const E={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},A=e=>(0,u.a)(e,E),S=new Set;function _(e,t={},r,s){let{init:a,info:c,loader_config:d,runtime:u={},exposed:l=!0}=t;if(!c){const e=(0,n.pV)();a=e.init,c=e.info,d=e.loader_config}e.init=f(a||{}),e.loader_config=A(d||{}),c.jsAttributes??={},h.bv&&(c.jsAttributes.isWorker=!0),e.info=(0,o.D)(c);const p=e.init,g=[c.beacon,c.errorBeacon];S.has(e.agentIdentifier)||(p.proxy.assets&&(x(p.proxy.assets),g.push(p.proxy.assets)),p.proxy.beacon&&g.push(p.proxy.beacon),e.beacons=[...g],function(e){const t=(0,n.pV)();Object.getOwnPropertyNames(i.W.prototype).forEach(r=>{const n=i.W.prototype[r];if("function"!=typeof n||"constructor"===n)return;let o=t[r];e[r]&&!1!==e.exposed&&"micro-agent"!==e.runtime?.loaderType&&(t[r]=(...t)=>{const n=e[r](...t);return o?o(...t):n})})}(e),(0,n.US)("activatedFeatures",w.B),e.runSoftNavOverSpa&&=!0===p.soft_navigations.enabled&&p.feature_flags.includes("soft_nav")),u.denyList=[...p.ajax.deny_list||[],...p.ajax.block_internal?g:[]],u.ptid=e.agentIdentifier,u.loaderType=r,e.runtime=y(u),S.has(e.agentIdentifier)||(e.ee=R.ee.get(e.agentIdentifier),e.exposed=l,(0,T.W)({agentIdentifier:e.agentIdentifier,drained:!!w.B?.[e.agentIdentifier],type:"lifecycle",name:"initialize",feature:void 0,data:e.config})),S.add(e.agentIdentifier)}},5270:(e,t,r)=>{"use strict";r.d(t,{Aw:()=>s,SR:()=>o,rF:()=>a});var n=r(384),i=r(7767);function o(e){return!!(0,n.dV)().o.MO&&(0,i.V)(e)&&!0===e?.session_trace.enabled}function s(e){return!0===e?.session_replay.preload&&o(e)}function a(e,t){try{if("string"==typeof t?.type){if("password"===t.type.toLowerCase())return"*".repeat(e?.length||0);if(void 0!==t?.dataset?.nrUnmask||t?.classList?.contains("nr-unmask"))return e}}catch(e){}return"string"==typeof e?e.replace(/[\S]/g,"*"):"*".repeat(e?.length||0)}},5289:(e,t,r)=>{"use strict";r.d(t,{GG:()=>s,Qr:()=>c,sB:()=>a});var n=r(3878),i=r(6389);function o(){return"undefined"==typeof document||"complete"===document.readyState}function s(e,t){if(o())return e();const r=(0,i.J)(e),s=setInterval(()=>{o()&&(clearInterval(s),r())},500);(0,n.sp)("load",r,t)}function a(e){if(o())return e();(0,n.DD)("DOMContentLoaded",e)}function c(e){if(o())return e();(0,n.sp)("popstate",e)}},5607:(e,t,r)=>{"use strict";r.d(t,{W:()=>n});const n=(0,r(9566).bz)()},5701:(e,t,r)=>{"use strict";r.d(t,{B:()=>o,t:()=>s});var n=r(3241);const i=new Set,o={};function s(e,t){const r=t.agentIdentifier;o[r]??={},e&&"object"==typeof e&&(i.has(r)||(t.ee.emit("rumresp",[e]),o[r]=e,i.add(r),(0,n.W)({agentIdentifier:r,loaded:!0,drained:!0,type:"lifecycle",name:"load",feature:void 0,data:e})))}},6154:(e,t,r)=>{"use strict";r.d(t,{A4:()=>a,OF:()=>u,RI:()=>i,WN:()=>h,bv:()=>o,eN:()=>p,gm:()=>s,lR:()=>f,m:()=>d,mw:()=>c,sb:()=>l});var n=r(1863);const i="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),s=i?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),a="complete"===s?.document?.readyState,c=Boolean("hidden"===s?.document?.visibilityState),d=""+s?.location,u=/iPad|iPhone|iPod/.test(s.navigator?.userAgent),l=u&&"undefined"==typeof SharedWorker,f=(()=>{const e=s.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),h=Date.now()-(0,n.t)(),p=()=>"undefined"!=typeof PerformanceNavigationTiming&&s?.performance?.getEntriesByType("navigation")?.[0]?.responseStart},6344:(e,t,r)=>{"use strict";r.d(t,{BB:()=>u,Qb:()=>l,TZ:()=>i,Ug:()=>s,Vh:()=>o,_s:()=>a,bc:()=>d,yP:()=>c});var n=r(2614);const i=r(860).K7.sessionReplay,o="errorDuringReplay",s=.12,a={DomContentLoaded:0,Load:1,FullSnapshot:2,IncrementalSnapshot:3,Meta:4,Custom:5},c={[n.g.ERROR]:15e3,[n.g.FULL]:3e5,[n.g.OFF]:0},d={RESET:{message:"Session was reset",sm:"Reset"},IMPORT:{message:"Recorder failed to import",sm:"Import"},TOO_MANY:{message:"429: Too Many Requests",sm:"Too-Many"},TOO_BIG:{message:"Payload was too large",sm:"Too-Big"},CROSS_TAB:{message:"Session Entity was set to OFF on another tab",sm:"Cross-Tab"},ENTITLEMENTS:{message:"Session Replay is not allowed and will not be started",sm:"Entitlement"}},u=5e3,l={API:"api",RESUME:"resume",SWITCH_TO_FULL:"switchToFull",INITIALIZE:"initialize",PRELOAD:"preload"}},6389:(e,t,r)=>{"use strict";function n(e,t=500,r={}){const n=r?.leading||!1;let i;return(...r)=>{n&&void 0===i&&(e.apply(this,r),i=setTimeout(()=>{i=clearTimeout(i)},t)),n||(clearTimeout(i),i=setTimeout(()=>{e.apply(this,r)},t))}}function i(e){let t=!1;return(...r)=>{t||(t=!0,e.apply(this,r))}}r.d(t,{J:()=>i,s:()=>n})},6630:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.pageViewEvent},6774:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.jserrors},7295:(e,t,r)=>{"use strict";r.d(t,{Xv:()=>s,gX:()=>i,iW:()=>o});var n=[];function i(e){if(!e||o(e))return!1;if(0===n.length)return!0;for(var t=0;t<n.length;t++){var r=n[t];if("*"===r.hostname)return!1;if(a(r.hostname,e.hostname)&&c(r.pathname,e.pathname))return!1}return!0}function o(e){return void 0===e.hostname}function s(e){if(n=[],e&&e.length)for(var t=0;t<e.length;t++){let r=e[t];if(!r)continue;0===r.indexOf("http://")?r=r.substring(7):0===r.indexOf("https://")&&(r=r.substring(8));const i=r.indexOf("/");let o,s;i>0?(o=r.substring(0,i),s=r.substring(i)):(o=r,s="");let[a]=o.split(":");n.push({hostname:a,pathname:s})}}function a(e,t){return!(e.length>t.length)&&t.indexOf(e)===t.length-e.length}function c(e,t){return 0===e.indexOf("/")&&(e=e.substring(1)),0===t.indexOf("/")&&(t=t.substring(1)),""===e||e===t}},7378:(e,t,r)=>{"use strict";r.d(t,{$p:()=>R,BR:()=>b,Kp:()=>x,L3:()=>y,Lc:()=>c,NC:()=>o,SG:()=>u,TZ:()=>i,U6:()=>p,UT:()=>m,d3:()=>w,dT:()=>f,e5:()=>E,gx:()=>v,l9:()=>l,oW:()=>h,op:()=>g,rw:()=>d,tH:()=>A,uP:()=>a,wW:()=>T,xq:()=>s});var n=r(384);const i=r(860).K7.spa,o=["click","submit","keypress","keydown","keyup","change"],s=999,a="fn-start",c="fn-end",d="cb-start",u="api-ixn-",l="remaining",f="interaction",h="spaNode",p="jsonpNode",g="fetch-start",m="fetch-done",v="fetch-body-",b="jsonp-end",y=(0,n.dV)().o.ST,w="-start",x="-end",R="-body",T="cb"+x,E="jsTime",A="fetch"},7485:(e,t,r)=>{"use strict";r.d(t,{D:()=>i});var n=r(6154);function i(e){if(0===(e||"").indexOf("data:"))return{protocol:"data"};try{const t=new URL(e,location.href),r={port:t.port,hostname:t.hostname,pathname:t.pathname,search:t.search,protocol:t.protocol.slice(0,t.protocol.indexOf(":")),sameOrigin:t.protocol===n.gm?.location?.protocol&&t.host===n.gm?.location?.host};return r.port&&""!==r.port||("http:"===t.protocol&&(r.port="80"),"https:"===t.protocol&&(r.port="443")),r.pathname&&""!==r.pathname?r.pathname.startsWith("/")||(r.pathname="/".concat(r.pathname)):r.pathname="/",r}catch(e){return{}}}},7699:(e,t,r)=>{"use strict";r.d(t,{It:()=>o,KC:()=>a,No:()=>i,qh:()=>s});var n=r(860);const i=16e3,o=1e6,s="SESSION_ERROR",a={[n.K7.logging]:!0,[n.K7.genericEvents]:!1,[n.K7.jserrors]:!1,[n.K7.ajax]:!1}},7767:(e,t,r)=>{"use strict";r.d(t,{V:()=>i});var n=r(6154);const i=e=>n.RI&&!0===e?.privacy.cookies_enabled},7836:(e,t,r)=>{"use strict";r.d(t,{P:()=>a,ee:()=>c});var n=r(384),i=r(8990),o=r(2646),s=r(5607);const a="nr@context:".concat(s.W),c=function e(t,r){var n={},s={},u={},l=!1;try{l=16===r.length&&d.initializedAgents?.[r]?.runtime.isolatedBacklog}catch(e){}var f={on:p,addEventListener:p,removeEventListener:function(e,t){var r=n[e];if(!r)return;for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)},emit:function(e,r,n,i,o){!1!==o&&(o=!0);if(c.aborted&&!i)return;t&&o&&t.emit(e,r,n);var a=h(n);g(e).forEach(e=>{e.apply(a,r)});var d=v()[s[e]];d&&d.push([f,e,r,a]);return a},get:m,listeners:g,context:h,buffer:function(e,t){const r=v();if(t=t||"feature",f.aborted)return;Object.entries(e||{}).forEach(([e,n])=>{s[n]=t,t in r||(r[t]=[])})},abort:function(){f._aborted=!0,Object.keys(f.backlog).forEach(e=>{delete f.backlog[e]})},isBuffering:function(e){return!!v()[s[e]]},debugId:r,backlog:l?{}:t&&"object"==typeof t.backlog?t.backlog:{},isolatedBacklog:l};return Object.defineProperty(f,"aborted",{get:()=>{let e=f._aborted||!1;return e||(t&&(e=t.aborted),e)}}),f;function h(e){return e&&e instanceof o.y?e:e?(0,i.I)(e,a,()=>new o.y(a)):new o.y(a)}function p(e,t){n[e]=g(e).concat(t)}function g(e){return n[e]||[]}function m(t){return u[t]=u[t]||e(f,t)}function v(){return f.backlog}}(void 0,"globalEE"),d=(0,n.Zm)();d.ee||(d.ee=c)},8122:(e,t,r)=>{"use strict";r.d(t,{a:()=>i});var n=r(944);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.R)(3);if(!t||"object"!=typeof t)return(0,n.R)(4);const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let s in o)if(void 0!==e[s])try{if(null===e[s]){r[s]=null;continue}Array.isArray(e[s])&&Array.isArray(t[s])?r[s]=Array.from(new Set([...e[s],...t[s]])):"object"==typeof e[s]&&"object"==typeof t[s]?r[s]=i(e[s],t[s]):r[s]=e[s]}catch(e){r[s]||(0,n.R)(1,e)}return r}catch(e){(0,n.R)(2,e)}}},8139:(e,t,r)=>{"use strict";r.d(t,{u:()=>f});var n=r(7836),i=r(3434),o=r(8990),s=r(6154);const a={},c=s.gm.XMLHttpRequest,d="addEventListener",u="removeEventListener",l="nr@wrapped:".concat(n.P);function f(e){var t=function(e){return(e||n.ee).get("events")}(e);if(a[t.debugId]++)return t;a[t.debugId]=1;var r=(0,i.YM)(t,!0);function f(e){r.inPlace(e,[d,u],"-",p)}function p(e,t){return e[1]}return"getPrototypeOf"in Object&&(s.RI&&h(document,f),c&&h(c.prototype,f),h(s.gm,f)),t.on(d+"-start",function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)&&"newrelic"!==e[0]){var i=(0,o.I)(n,l,function(){var e={object:function(){if("function"!=typeof n.handleEvent)return;return n.handleEvent.apply(n,arguments)},function:n}[typeof n];return e?r(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=e[1]=i}}),t.on(u+"-start",function(e){e[1]=this.wrapped||e[1]}),t}function h(e,t,...r){let n=e;for(;"object"==typeof n&&!Object.prototype.hasOwnProperty.call(n,d);)n=Object.getPrototypeOf(n);n&&t(n,...r)}},8374:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},8990:(e,t,r)=>{"use strict";r.d(t,{I:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},9300:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K7.ajax},9324:(e,t,r)=>{"use strict";r.d(t,{AJ:()=>s,F3:()=>i,Xs:()=>o,Yq:()=>a,xv:()=>n});const n="1.306.0",i="PROD",o="CDN",s="@newrelic/rrweb",a="1.0.1"},9566:(e,t,r)=>{"use strict";r.d(t,{LA:()=>a,ZF:()=>c,bz:()=>s,el:()=>d});var n=r(6154);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function s(){const e=n.gm?.crypto||n.gm?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(30))),i.split("").map(e=>"x"===e?o(t,r++).toString(16):"y"===e?(3&o()|8).toString(16):e).join("")}function a(e){const t=n.gm?.crypto||n.gm?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const s=[];for(var a=0;a<e;a++)s.push(o(r,i++).toString(16));return s.join("")}function c(){return a(16)}function d(){return a(32)}},9908:(e,t,r)=>{"use strict";r.d(t,{d:()=>n,p:()=>i});var n=r(7836).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce((t,r)=>(i.f[r](e,t),t),[])),i.u=e=>({212:"nr-spa-compressor",249:"nr-spa-recorder",478:"nr-spa"}[e]+"-1.306.0.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.306.0.PROD:",i.l=(r,n,o,s)=>{if(e[r])e[r].push(n);else{var a,c;if(void 0!==o)for(var d=document.getElementsByTagName("script"),u=0;u<d.length;u++){var l=d[u];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){a=l;break}}if(!a){c=!0;var f={478:"sha512-aOsrvCAZ97m4mi9/Q4P4Dl7seaB7sOFJOs8qmPK71B7CWoc9bXc5a5319PV5PSQ3SmEq++JW0qpaiKWV7MTLEg==",249:"sha512-nPxm1wa+eWrD9VPj39BAOPa200tURpQREipOlSDpePq/R8Y4hd4lO6tDy6C/6jm/J54CUHnLYeGyLZ/GIlo7gg==",212:"sha512-zcA2FBsG3fy6K+G9+4J1T2M6AmHuICGsq35BrGWu1rmRJwYBUqdOhAAxJkXYpoBy/9vKZ7LBcGpOEjABpjEWCQ=="};(a=document.createElement("script")).charset="utf-8",i.nc&&a.setAttribute("nonce",i.nc),a.setAttribute("data-webpack",t+o),a.src=r,0!==a.src.indexOf(window.location.origin+"/")&&(a.crossOrigin="anonymous"),f[s]&&(a.integrity=f[s])}e[r]=[n];var h=(t,n)=>{a.onerror=a.onload=null,clearTimeout(p);var i=e[r];if(delete e[r],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach(e=>e(n)),t)return t(n)},p=setTimeout(h.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=h.bind(null,a.onerror),a.onload=h.bind(null,a.onload),c&&document.head.appendChild(a)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.p="https://js-agent.newrelic.com/",(()=>{var e={38:0,788:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise((r,i)=>n=e[t]=[r,i]);r.push(n[2]=o);var s=i.p+i.u(t),a=new Error;i.l(s,r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),s=r&&r.target&&r.target.src;a.message="Loading chunk "+t+" failed: ("+o+": "+s+")",a.name="ChunkLoadError",a.type=o,a.request=s,n[1](a)}},"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[s,a,c]=r,d=0;if(s.some(t=>0!==e[t])){for(n in a)i.o(a,n)&&(i.m[n]=a[n]);if(c)c(i)}for(t&&t(r);d<s.length;d++)o=s[d],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.306.0.PROD"]=self["webpackChunk:NRBA-1.306.0.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(8374);var e=i(9566),t=i(1741);class r extends t.W{agentIdentifier=(0,e.LA)(16)}var n=i(860);const o=Object.values(n.K7);var s=i(5205);var a=i(9908),c=i(1863),d=i(4261),u=i(3241),l=i(944),f=i(5701),h=i(3969);function p(e,t,i,o){const s=o||i;!s||s[e]&&s[e]!==r.prototype[e]||(s[e]=function(){(0,a.p)(h.xV,["API/"+e+"/called"],void 0,n.K7.metrics,i.ee),(0,u.W)({agentIdentifier:i.agentIdentifier,drained:!!f.B?.[i.agentIdentifier],type:"data",name:"api",feature:d.Pl+e,data:{}});try{return t.apply(this,arguments)}catch(e){(0,l.R)(23,e)}})}function g(e,t,r,n,i){const o=e.info;null===r?delete o.jsAttributes[t]:o.jsAttributes[t]=r,(i||null===r)&&(0,a.p)(d.Pl+n,[(0,c.t)(),t,r],void 0,"session",e.ee)}var m=i(1687),v=i(4234),b=i(5289),y=i(6154),w=i(5270),x=i(7767),R=i(6389),T=i(7699);class E extends v.W{constructor(e,t){super(e.agentIdentifier,t),this.agentRef=e,this.abortHandler=void 0,this.featAggregate=void 0,this.loadedSuccessfully=void 0,this.onAggregateImported=new Promise(e=>{this.loadedSuccessfully=e}),this.deferred=Promise.resolve(),!1===e.init[this.featureName].autoStart?this.deferred=new Promise((t,r)=>{this.ee.on("manual-start-all",(0,R.J)(()=>{(0,m.Ak)(e.agentIdentifier,this.featureName),t()}))}):(0,m.Ak)(e.agentIdentifier,t)}importAggregator(e,t,r={}){if(this.featAggregate)return;const n=async()=>{let n;await this.deferred;try{if((0,x.V)(e.init)){const{setupAgentSession:t}=await i.e(478).then(i.bind(i,8766));n=t(e)}}catch(e){(0,l.R)(20,e),this.ee.emit("internal-error",[e]),(0,a.p)(T.qh,[e],void 0,this.featureName,this.ee)}try{if(!this.#t(this.featureName,n,e.init))return(0,m.Ze)(this.agentIdentifier,this.featureName),void this.loadedSuccessfully(!1);const{Aggregate:i}=await t();this.featAggregate=new i(e,r),e.runtime.harvester.initializedAggregates.push(this.featAggregate),this.loadedSuccessfully(!0)}catch(e){(0,l.R)(34,e),this.abortHandler?.(),(0,m.Ze)(this.agentIdentifier,this.featureName,!0),this.loadedSuccessfully(!1),this.ee&&this.ee.abort()}};y.RI?(0,b.GG)(()=>n(),!0):n()}#t(e,t,r){if(this.blocked)return!1;switch(e){case n.K7.sessionReplay:return(0,w.SR)(r)&&!!t;case n.K7.sessionTrace:return!!t;default:return!0}}}var A=i(6630),S=i(2614);class _ extends E{static featureName=A.T;constructor(e){var t;super(e,A.T),this.setupInspectionEvents(e.agentIdentifier),t=e,p(d.Fw,function(e,r){"string"==typeof e&&("/"!==e.charAt(0)&&(e="/"+e),t.runtime.customTransaction=(r||"http://custom.transaction")+e,(0,a.p)(d.Pl+d.Fw,[(0,c.t)()],void 0,void 0,t.ee))},t),this.importAggregator(e,()=>i.e(478).then(i.bind(i,2467)))}setupInspectionEvents(e){const t=(t,r)=>{t&&(0,u.W)({agentIdentifier:e,timeStamp:t.timeStamp,loaded:"complete"===t.target.readyState,type:"window",name:r,data:t.target.location+""})};(0,b.sB)(e=>{t(e,"DOMContentLoaded")}),(0,b.GG)(e=>{t(e,"load")}),(0,b.Qr)(e=>{t(e,"navigate")}),this.ee.on(S.tS.UPDATE,(t,r)=>{(0,u.W)({agentIdentifier:e,type:"lifecycle",name:"session",data:r})})}}var O=i(384);var N=i(2843),I=i(782);class P extends E{static featureName=I.T;constructor(e){super(e,I.T),y.RI&&((0,N.u)(()=>(0,a.p)("docHidden",[(0,c.t)()],void 0,I.T,this.ee),!0),(0,N.G)(()=>(0,a.p)("winPagehide",[(0,c.t)()],void 0,I.T,this.ee)),this.importAggregator(e,()=>i.e(478).then(i.bind(i,9917))))}}class j extends E{static featureName=h.TZ;constructor(e){super(e,h.TZ),y.RI&&document.addEventListener("securitypolicyviolation",e=>{(0,a.p)(h.xV,["Generic/CSPViolation/Detected"],void 0,this.featureName,this.ee)}),this.importAggregator(e,()=>i.e(478).then(i.bind(i,6555)))}}var k=i(6774),C=i(3878),D=i(3304);class L{constructor(e,t,r,n,i){this.name="UncaughtError",this.message="string"==typeof e?e:(0,D.A)(e),this.sourceURL=t,this.line=r,this.column=n,this.__newrelic=i}}function M(e){return K(e)?e:new L(void 0!==e?.message?e.message:e,e?.filename||e?.sourceURL,e?.lineno||e?.line,e?.colno||e?.col,e?.__newrelic,e?.cause)}function H(e){const t="Unhandled Promise Rejection: ";if(!e?.reason)return;if(K(e.reason)){try{e.reason.message.startsWith(t)||(e.reason.message=t+e.reason.message)}catch(e){}return M(e.reason)}const r=M(e.reason);return(r.message||"").startsWith(t)||(r.message=t+r.message),r}function B(e){if(e.error instanceof SyntaxError&&!/:\d+$/.test(e.error.stack?.trim())){const t=new L(e.message,e.filename,e.lineno,e.colno,e.error.__newrelic,e.cause);return t.name=SyntaxError.name,t}return K(e.error)?e.error:M(e)}function K(e){return e instanceof Error&&!!e.stack}function W(e,t,r,i,o=(0,c.t)()){"string"==typeof e&&(e=new Error(e)),(0,a.p)("err",[e,o,!1,t,r.runtime.isRecording,void 0,i],void 0,n.K7.jserrors,r.ee),(0,a.p)("uaErr",[],void 0,n.K7.genericEvents,r.ee)}var U=i(4387),F=i(993),V=i(3785);function G(e,{customAttributes:t={},level:r=F.p_.INFO}={},n,i,o=(0,c.t)()){(0,V.R)(n.ee,e,t,r,!1,i,o)}function z(e,t,r,i,o=(0,c.t)()){(0,a.p)(d.Pl+d.hG,[o,e,t,i],void 0,n.K7.genericEvents,r.ee)}function Z(e,t,r,i,o=(0,c.t)()){const{start:s,end:u,customAttributes:f}=t||{},h={customAttributes:f||{}};if("object"!=typeof h.customAttributes||"string"!=typeof e||0===e.length)return void(0,l.R)(57);const p=(e,t)=>null==e?t:"number"==typeof e?e:e instanceof PerformanceMark?e.startTime:Number.NaN;if(h.start=p(s,0),h.end=p(u,o),Number.isNaN(h.start)||Number.isNaN(h.end))(0,l.R)(57);else{if(h.duration=h.end-h.start,!(h.duration<0))return(0,a.p)(d.Pl+d.V1,[h,e,i],void 0,n.K7.genericEvents,r.ee),h;(0,l.R)(58)}}function q(e,t={},r,i,o=(0,c.t)()){(0,a.p)(d.Pl+d.fF,[o,e,t,i],void 0,n.K7.genericEvents,r.ee)}function X(e){p(d.eY,function(t){return Y(e,t)},e)}function Y(e,t,r){const i={};(0,l.R)(54,"newrelic.register"),t||={},t.type="MFE",t.licenseKey||=e.info.licenseKey,t.blocked=!1,t.parent=r||{};let o=()=>{};const s=e.runtime.registeredEntities,d=s.find(({metadata:{target:{id:e,name:r}}})=>e===t.id);if(d)return d.metadata.target.name!==t.name&&(d.metadata.target.name=t.name),d;const u=e=>{t.blocked=!0,o=e};e.init.api.allow_registered_children||u((0,R.J)(()=>(0,l.R)(55))),(0,U.c7)(t)||u((0,R.J)(()=>(0,l.R)(48,t))),(0,U.yo)(t.id)&&(0,U.yo)(t.name)||u((0,R.J)(()=>(0,l.R)(48,t)));const f={addPageAction:(r,n={})=>m(z,[r,{...i,...n},e],t),log:(r,n={})=>m(G,[r,{...n,customAttributes:{...i,...n.customAttributes||{}}},e],t),measure:(r,n={})=>m(Z,[r,{...n,customAttributes:{...i,...n.customAttributes||{}}},e],t),noticeError:(r,n={})=>m(W,[r,{...i,...n},e],t),register:(t={})=>m(Y,[e,t],f.metadata.target),recordCustomEvent:(r,n={})=>m(q,[r,{...i,...n},e],t),setApplicationVersion:e=>g("application.version",e),setCustomAttribute:(e,t)=>g(e,t),setUserId:e=>g("enduser.id",e),metadata:{customAttributes:i,target:t}},p=()=>(t.blocked&&o(),t.blocked);p()||s.push(f);const g=(e,t)=>{p()||(i[e]=t)},m=(t,r,i)=>{if(p())return;const o=(0,c.t)();(0,a.p)(h.xV,["API/register/".concat(t.name,"/called")],void 0,n.K7.metrics,e.ee);try{return e.init.api.duplicate_registered_data&&"register"!==t.name&&t(...r,void 0,o),t(...r,i,o)}catch(e){(0,l.R)(50,e)}};return f}class J extends E{static featureName=k.T;constructor(e){var t;super(e,k.T),t=e,p(d.o5,(e,r)=>W(e,r,t),t),function(e){p(d.bt,function(t){e.runtime.onerror=t},e)}(e),function(e){let t=0;p(d.k6,function(e,r){++t>10||(this.runtime.releaseIds[e.slice(-200)]=(""+r).slice(-200))},e)}(e),X(e);try{this.removeOnAbort=new AbortController}catch(e){}this.ee.on("internal-error",(t,r)=>{this.abortHandler&&(0,a.p)("ierr",[M(t),(0,c.t)(),!0,{},e.runtime.isRecording,r],void 0,this.featureName,this.ee)}),y.gm.addEventListener("unhandledrejection",t=>{this.abortHandler&&(0,a.p)("err",[H(t),(0,c.t)(),!1,{unhandledPromiseRejection:1},e.runtime.isRecording],void 0,this.featureName,this.ee)},(0,C.jT)(!1,this.removeOnAbort?.signal)),y.gm.addEventListener("error",t=>{this.abortHandler&&(0,a.p)("err",[B(t),(0,c.t)(),!1,{},e.runtime.isRecording],void 0,this.featureName,this.ee)},(0,C.jT)(!1,this.removeOnAbort?.signal)),this.abortHandler=this.#r,this.importAggregator(e,()=>i.e(478).then(i.bind(i,2176)))}#r(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var Q=i(8990);let ee=1;function te(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===y.gm?0:(0,Q.I)(e,"nr@id",function(){return ee++})}function re(e){if("string"==typeof e&&e.length)return e.length;if("object"==typeof e){if("undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer&&e.byteLength)return e.byteLength;if("undefined"!=typeof Blob&&e instanceof Blob&&e.size)return e.size;if(!("undefined"!=typeof FormData&&e instanceof FormData))try{return(0,D.A)(e).length}catch(e){return}}}var ne=i(8139),ie=i(7836),oe=i(3434);const se={},ae=["open","send"];function ce(e){var t=e||ie.ee;const r=function(e){return(e||ie.ee).get("xhr")}(t);if(void 0===y.gm.XMLHttpRequest)return r;if(se[r.debugId]++)return r;se[r.debugId]=1,(0,ne.u)(t);var n=(0,oe.YM)(r),i=y.gm.XMLHttpRequest,o=y.gm.MutationObserver,s=y.gm.Promise,a=y.gm.setInterval,c="readystatechange",d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],u=[],f=y.gm.XMLHttpRequest=function(e){const t=new i(e),o=r.context(t);try{r.emit("new-xhr",[t],o),t.addEventListener(c,(s=o,function(){var e=this;e.readyState>3&&!s.resolved&&(s.resolved=!0,r.emit("xhr-resolved",[],e)),n.inPlace(e,d,"fn-",b)}),(0,C.jT)(!1))}catch(e){(0,l.R)(15,e);try{r.emit("internal-error",[e])}catch(e){}}var s;return t};function h(e,t){n.inPlace(t,["onreadystatechange"],"fn-",b)}if(function(e,t){for(var r in e)t[r]=e[r]}(i,f),f.prototype=i.prototype,n.inPlace(f.prototype,ae,"-xhr-",b),r.on("send-xhr-start",function(e,t){h(e,t),function(e){u.push(e),o&&(p?p.then(v):a?a(v):(g=-g,m.data=g))}(t)}),r.on("open-xhr-start",h),o){var p=s&&s.resolve();if(!a&&!s){var g=1,m=document.createTextNode(g);new o(v).observe(m,{characterData:!0})}}else t.on("fn-end",function(e){e[0]&&e[0].type===c||v()});function v(){for(var e=0;e<u.length;e++)h(0,u[e]);u.length&&(u=[])}function b(e,t){return t}return r}var de="fetch-",ue=de+"body-",le=["arrayBuffer","blob","json","text","formData"],fe=y.gm.Request,he=y.gm.Response,pe="prototype";const ge={};function me(e){const t=function(e){return(e||ie.ee).get("fetch")}(e);if(!(fe&&he&&y.gm.fetch))return t;if(ge[t.debugId]++)return t;function r(e,r,n){var i=e[r];"function"==typeof i&&(e[r]=function(){var e,r=[...arguments],o={};t.emit(n+"before-start",[r],o),o[ie.P]&&o[ie.P].dt&&(e=o[ie.P].dt);var s=i.apply(this,r);return t.emit(n+"start",[r,e],s),s.then(function(e){return t.emit(n+"end",[null,e],s),e},function(e){throw t.emit(n+"end",[e],s),e})})}return ge[t.debugId]=1,le.forEach(e=>{r(fe[pe],e,ue),r(he[pe],e,ue)}),r(y.gm,"fetch",de),t.on(de+"end",function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(de+"done",[null,r],n)}else t.emit(de+"done",[e],n)}),t}var ve=i(7485);class be{constructor(e){this.agentRef=e}generateTracePayload(t){const r=this.agentRef.loader_config;if(!this.shouldGenerateTrace(t)||!r)return null;var n=(r.accountID||"").toString()||null,i=(r.agentID||"").toString()||null,o=(r.trustKey||"").toString()||null;if(!n||!i)return null;var s=(0,e.ZF)(),a=(0,e.el)(),c=Date.now(),d={spanId:s,traceId:a,timestamp:c};return(t.sameOrigin||this.isAllowedOrigin(t)&&this.useTraceContextHeadersForCors())&&(d.traceContextParentHeader=this.generateTraceContextParentHeader(s,a),d.traceContextStateHeader=this.generateTraceContextStateHeader(s,c,n,i,o)),(t.sameOrigin&&!this.excludeNewrelicHeader()||!t.sameOrigin&&this.isAllowedOrigin(t)&&this.useNewrelicHeaderForCors())&&(d.newrelicHeader=this.generateTraceHeader(s,a,c,n,i,o)),d}generateTraceContextParentHeader(e,t){return"00-"+t+"-"+e+"-01"}generateTraceContextStateHeader(e,t,r,n,i){return i+"@nr=0-1-"+r+"-"+n+"-"+e+"----"+t}generateTraceHeader(e,t,r,n,i,o){if(!("function"==typeof y.gm?.btoa))return null;var s={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(s.d.tk=o),btoa((0,D.A)(s))}shouldGenerateTrace(e){return this.agentRef.init?.distributed_tracing?.enabled&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var t=!1;const r=this.agentRef.init?.distributed_tracing;if(e.sameOrigin)t=!0;else if(r?.allowed_origins instanceof Array)for(var n=0;n<r.allowed_origins.length;n++){var i=(0,ve.D)(r.allowed_origins[n]);if(e.hostname===i.hostname&&e.protocol===i.protocol&&e.port===i.port){t=!0;break}}return t}excludeNewrelicHeader(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=this.agentRef.init?.distributed_tracing;return!!e&&!!e.cors_use_tracecontext_headers}}var ye=i(9300),we=i(7295);function xe(e){return"string"==typeof e?e:e instanceof(0,O.dV)().o.REQ?e.url:y.gm?.URL&&e instanceof URL?e.href:void 0}var Re=["load","error","abort","timeout"],Te=Re.length,Ee=(0,O.dV)().o.REQ,Ae=(0,O.dV)().o.XHR;const Se="X-NewRelic-App-Data";class _e extends E{static featureName=ye.T;constructor(e){super(e,ye.T),this.dt=new be(e),this.handler=(e,t,r,n)=>(0,a.p)(e,t,r,n,this.ee);try{const e={xmlhttprequest:"xhr",fetch:"fetch",beacon:"beacon"};y.gm?.performance?.getEntriesByType("resource").forEach(t=>{if(t.initiatorType in e&&0!==t.responseStatus){const r={status:t.responseStatus},i={rxSize:t.transferSize,duration:Math.floor(t.duration),cbTime:0};Oe(r,t.name),this.handler("xhr",[r,i,t.startTime,t.responseEnd,e[t.initiatorType]],void 0,n.K7.ajax)}})}catch(e){}me(this.ee),ce(this.ee),function(e,t,r,i){function o(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=E,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},t.latestLongtaskEnd=0,e.addEventListener("load",function(r){A(t,e)},(0,C.jT)(!1)),y.lR||e.addEventListener("progress",function(e){t.lastSize=e.loaded},(0,C.jT)(!1))}function s(e){this.params={method:e[0]},Oe(this,e[1]),this.metrics={}}function d(t,r){e.loader_config.xpid&&this.sameOrigin&&r.setRequestHeader("X-NewRelic-ID",e.loader_config.xpid);var n=i.generateTracePayload(this.parsedOrigin);if(n){var o=!1;n.newrelicHeader&&(r.setRequestHeader("newrelic",n.newrelicHeader),o=!0),n.traceContextParentHeader&&(r.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&r.setRequestHeader("tracestate",n.traceContextStateHeader),o=!0),o&&(this.dt=n)}}function u(e,r){var n=this.metrics,i=e[0],o=this;if(n&&i){var s=re(i);s&&(n.txSize=s)}this.startTime=(0,c.t)(),this.body=i,this.listener=function(e){try{"abort"!==e.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==e.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof r.onload)&&"function"==typeof o.end)&&o.end(r)}catch(e){try{t.emit("internal-error",[e])}catch(e){}}};for(var a=0;a<Te;a++)r.addEventListener(Re[a],this.listener,(0,C.jT)(!1))}function l(e,t,r){this.cbTime+=e,t?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof r.onload||"function"!=typeof this.end||this.end(r)}function f(e,t){var r=""+te(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function p(e,t){var r=""+te(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function g(){this.endTime=(0,c.t)()}function m(e,r){r instanceof Ae&&"load"===e[0]&&t.emit("xhr-load-added",[e[1],e[2]],r)}function v(e,r){r instanceof Ae&&"load"===e[0]&&t.emit("xhr-load-removed",[e[1],e[2]],r)}function b(e,t,r){t instanceof Ae&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,c.t)()))}function w(e,r){this.xhrCbStart&&t.emit("xhr-cb-time",[(0,c.t)()-this.xhrCbStart,this.onload,r],r)}function x(e){var t,r=e[1]||{};if("string"==typeof e[0]?0===(t=e[0]).length&&y.RI&&(t=""+y.gm.location.href):e[0]&&e[0].url?t=e[0].url:y.gm?.URL&&e[0]&&e[0]instanceof URL?t=e[0].href:"function"==typeof e[0].toString&&(t=e[0].toString()),"string"==typeof t&&0!==t.length){t&&(this.parsedOrigin=(0,ve.D)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var n=i.generateTracePayload(this.parsedOrigin);if(n&&(n.newrelicHeader||n.traceContextParentHeader))if(e[0]&&e[0].headers)a(e[0].headers,n)&&(this.dt=n);else{var o={};for(var s in r)o[s]=r[s];o.headers=new Headers(r.headers||{}),a(o.headers,n)&&(this.dt=n),e.length>1?e[1]=o:e.push(o)}}function a(e,t){var r=!1;return t.newrelicHeader&&(e.set("newrelic",t.newrelicHeader),r=!0),t.traceContextParentHeader&&(e.set("traceparent",t.traceContextParentHeader),t.traceContextStateHeader&&e.set("tracestate",t.traceContextStateHeader),r=!0),r}}function R(e,t){this.params={},this.metrics={},this.startTime=(0,c.t)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r=this.opts||{},n=this.target;Oe(this,xe(n));var i=(""+(n&&n instanceof Ee&&n.method||r.method||"GET")).toUpperCase();this.params.method=i,this.body=r.body,this.txSize=re(r.body)||0}function T(e,t){if(this.endTime=(0,c.t)(),this.params||(this.params={}),(0,we.iW)(this.params))return;let i;this.params.status=t?t.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(i=+this.rxSize);const o={txSize:this.txSize,rxSize:i,duration:(0,c.t)()-this.startTime};r("xhr",[this.params,o,this.startTime,this.endTime,"fetch"],this,n.K7.ajax)}function E(e){const t=this.params,i=this.metrics;if(!this.ended){this.ended=!0;for(let t=0;t<Te;t++)e.removeEventListener(Re[t],this.listener,!1);t.aborted||(0,we.iW)(t)||(i.duration=(0,c.t)()-this.startTime,this.loadCaptureCalled||4!==e.readyState?null==t.status&&(t.status=0):A(this,e),i.cbTime=this.cbTime,r("xhr",[t,i,this.startTime,this.endTime,"xhr"],this,n.K7.ajax))}}function A(e,r){e.params.status=r.status;var i=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?re(e.response):"text"===r||""===r||void 0===r?re(e.responseText):void 0}(r,e.lastSize);if(i&&(e.metrics.rxSize=i),e.sameOrigin&&r.getAllResponseHeaders().indexOf(Se)>=0){var o=r.getResponseHeader(Se);o&&((0,a.p)(h.rs,["Ajax/CrossApplicationTracing/Header/Seen"],void 0,n.K7.metrics,t),e.params.cat=o.split(", ").pop())}e.loadCaptureCalled=!0}t.on("new-xhr",o),t.on("open-xhr-start",s),t.on("open-xhr-end",d),t.on("send-xhr-start",u),t.on("xhr-cb-time",l),t.on("xhr-load-added",f),t.on("xhr-load-removed",p),t.on("xhr-resolved",g),t.on("addEventListener-end",m),t.on("removeEventListener-end",v),t.on("fn-end",w),t.on("fetch-before-start",x),t.on("fetch-start",R),t.on("fn-start",b),t.on("fetch-done",T)}(e,this.ee,this.handler,this.dt),this.importAggregator(e,()=>i.e(478).then(i.bind(i,3845)))}}function Oe(e,t){var r=(0,ve.D)(t),n=e.params||e;n.hostname=r.hostname,n.port=r.port,n.protocol=r.protocol,n.host=r.hostname+":"+r.port,n.pathname=r.pathname,e.parsedOrigin=r,e.sameOrigin=r.sameOrigin}const Ne={},Ie=["pushState","replaceState"];function Pe(e){const t=function(e){return(e||ie.ee).get("history")}(e);return!y.RI||Ne[t.debugId]++||(Ne[t.debugId]=1,(0,oe.YM)(t).inPlace(window.history,Ie,"-")),t}var je=i(3738);function ke(e){p(d.BL,function(t=Date.now()){const r=t-y.WN;r<0&&(0,l.R)(62,t),(0,a.p)(h.XG,[d.BL,{time:r}],void 0,n.K7.metrics,e.ee),e.addToTrace({name:d.BL,start:t,origin:"nr"}),(0,a.p)(d.Pl+d.hG,[r,d.BL],void 0,n.K7.genericEvents,e.ee)},e)}const{He:Ce,bD:De,d3:Le,Kp:Me,TZ:He,Lc:Be,uP:Ke,Rz:We}=je;class Ue extends E{static featureName=He;constructor(e){var t;super(e,He),t=e,p(d.U2,function(e){if(!(e&&"object"==typeof e&&e.name&&e.start))return;const r={n:e.name,s:e.start-y.WN,e:(e.end||e.start)-y.WN,o:e.origin||"",t:"api"};r.s<0||r.e<0||r.e<r.s?(0,l.R)(61,{start:r.s,end:r.e}):(0,a.p)("bstApi",[r],void 0,n.K7.sessionTrace,t.ee)},t),ke(e);if(!(0,x.V)(e.init))return void this.deregisterDrain();const r=this.ee;let o;Pe(r),this.eventsEE=(0,ne.u)(r),this.eventsEE.on(Ke,function(e,t){this.bstStart=(0,c.t)()}),this.eventsEE.on(Be,function(e,t){(0,a.p)("bst",[e[0],t,this.bstStart,(0,c.t)()],void 0,n.K7.sessionTrace,r)}),r.on(We+Le,function(e){this.time=(0,c.t)(),this.startPath=location.pathname+location.hash}),r.on(We+Me,function(e){(0,a.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,n.K7.sessionTrace,r)});try{o=new PerformanceObserver(e=>{const t=e.getEntries();(0,a.p)(Ce,[t],void 0,n.K7.sessionTrace,r)}),o.observe({type:De,buffered:!0})}catch(e){}this.importAggregator(e,()=>i.e(478).then(i.bind(i,6974)),{resourceObserver:o})}}var Fe=i(6344);class Ve extends E{static featureName=Fe.TZ;#n;recorder;constructor(e){var t;let r;super(e,Fe.TZ),t=e,p(d.CH,function(){(0,a.p)(d.CH,[],void 0,n.K7.sessionReplay,t.ee)},t),function(e){p(d.Tb,function(){(0,a.p)(d.Tb,[],void 0,n.K7.sessionReplay,e.ee)},e)}(e);try{r=JSON.parse(localStorage.getItem("".concat(S.H3,"_").concat(S.uh)))}catch(e){}(0,w.SR)(e.init)&&this.ee.on(d.CH,()=>this.#i()),this.#o(r)&&this.importRecorder().then(e=>{e.startRecording(Fe.Qb.PRELOAD,r?.sessionReplayMode)}),this.importAggregator(this.agentRef,()=>i.e(478).then(i.bind(i,6167)),this),this.ee.on("err",e=>{this.blocked||this.agentRef.runtime.isRecording&&(this.errorNoticed=!0,(0,a.p)(Fe.Vh,[e],void 0,this.featureName,this.ee))})}#o(e){return e&&(e.sessionReplayMode===S.g.FULL||e.sessionReplayMode===S.g.ERROR)||(0,w.Aw)(this.agentRef.init)}importRecorder(){return this.recorder?Promise.resolve(this.recorder):(this.#n??=Promise.all([i.e(478),i.e(249)]).then(i.bind(i,4866)).then(({Recorder:e})=>(this.recorder=new e(this),this.recorder)).catch(e=>{throw this.ee.emit("internal-error",[e]),this.blocked=!0,e}),this.#n)}#i(){this.blocked||(this.featAggregate?this.featAggregate.mode!==S.g.FULL&&this.featAggregate.initializeRecording(S.g.FULL,!0,Fe.Qb.API):this.importRecorder().then(()=>{this.recorder.startRecording(Fe.Qb.API,S.g.FULL)}))}}var Ge=i(3962);function ze(e){const t=e.ee.get("tracer");function r(){}p(d.dT,function(e){return(new r).get("object"==typeof e?e:{})},e);const i=r.prototype={createTracer:function(r,i){var o={},s=this,u="function"==typeof i;return(0,a.p)(h.xV,["API/createTracer/called"],void 0,n.K7.metrics,e.ee),e.runSoftNavOverSpa||(0,a.p)(d.hw+"tracer",[(0,c.t)(),r,o],s,n.K7.spa,e.ee),function(){if(t.emit((u?"":"no-")+"fn-start",[(0,c.t)(),s,u],o),u)try{return i.apply(this,arguments)}catch(e){const r="string"==typeof e?new Error(e):e;throw t.emit("fn-err",[arguments,this,r],o),r}finally{t.emit("fn-end",[(0,c.t)()],o)}}}};["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach(t=>{p.apply(this,[t,function(){return(0,a.p)(d.hw+t,[(0,c.t)(),...arguments],this,e.runSoftNavOverSpa?n.K7.softNav:n.K7.spa,e.ee),this},e,i])}),p(d.PA,function(){e.runSoftNavOverSpa?(0,a.p)(d.hw+"routeName",[performance.now(),...arguments],void 0,n.K7.softNav,e.ee):(0,a.p)(d.Pl+"routeName",[(0,c.t)(),...arguments],this,n.K7.spa,e.ee)},e)}class Ze extends E{static featureName=Ge.TZ;constructor(e){if(super(e,Ge.TZ),ze(e),!y.RI||!(0,O.dV)().o.MO)return;const t=Pe(this.ee);try{this.removeOnAbort=new AbortController}catch(e){}Ge.tC.forEach(e=>{(0,C.sp)(e,e=>{s(e)},!0,this.removeOnAbort?.signal)});const r=()=>(0,a.p)("newURL",[(0,c.t)(),""+window.location],void 0,this.featureName,this.ee);t.on("pushState-end",r),t.on("replaceState-end",r),(0,C.sp)(Ge.OV,e=>{s(e),(0,a.p)("newURL",[e.timeStamp,""+window.location],void 0,this.featureName,this.ee)},!0,this.removeOnAbort?.signal);let n=!1;const o=new((0,O.dV)().o.MO)((e,t)=>{n||(n=!0,requestAnimationFrame(()=>{(0,a.p)("newDom",[(0,c.t)()],void 0,this.featureName,this.ee),n=!1}))}),s=(0,R.s)(e=>{"loading"!==document.readyState&&((0,a.p)("newUIEvent",[e],void 0,this.featureName,this.ee),o.observe(document.body,{attributes:!0,childList:!0,subtree:!0,characterData:!0}))},100,{leading:!0});this.abortHandler=function(){this.removeOnAbort?.abort(),o.disconnect(),this.abortHandler=void 0},this.importAggregator(e,()=>i.e(478).then(i.bind(i,4393)),{domObserver:o})}}var qe=i(7378);const Xe={},Ye=["appendChild","insertBefore","replaceChild"];function Je(e){const t=function(e){return(e||ie.ee).get("jsonp")}(e);if(!y.RI||Xe[t.debugId])return t;Xe[t.debugId]=!0;var r=(0,oe.YM)(t),n=/[?&](?:callback|cb)=([^&#]+)/,i=/(.*)\.([^.]+)/,o=/^(\w+)(\.|$)(.*)$/;function s(e,t){if(!e)return t;const r=e.match(o),n=r[1];return s(r[3],t[n])}return r.inPlace(Node.prototype,Ye,"dom-"),t.on("dom-start",function(e){!function(e){if(!e||"string"!=typeof e.nodeName||"script"!==e.nodeName.toLowerCase())return;if("function"!=typeof e.addEventListener)return;var o=(a=e.src,c=a.match(n),c?c[1]:null);var a,c;if(!o)return;var d=function(e){var t=e.match(i);if(t&&t.length>=3)return{key:t[2],parent:s(t[1],window)};return{key:e,parent:window}}(o);if("function"!=typeof d.parent[d.key])return;var u={};function l(){t.emit("jsonp-end",[],u),e.removeEventListener("load",l,(0,C.jT)(!1)),e.removeEventListener("error",f,(0,C.jT)(!1))}function f(){t.emit("jsonp-error",[],u),t.emit("jsonp-end",[],u),e.removeEventListener("load",l,(0,C.jT)(!1)),e.removeEventListener("error",f,(0,C.jT)(!1))}r.inPlace(d.parent,[d.key],"cb-",u),e.addEventListener("load",l,(0,C.jT)(!1)),e.addEventListener("error",f,(0,C.jT)(!1)),t.emit("new-jsonp",[e.src],u)}(e[0])}),t}const $e={};function Qe(e){const t=function(e){return(e||ie.ee).get("promise")}(e);if($e[t.debugId])return t;$e[t.debugId]=!0;var r=t.context,n=(0,oe.YM)(t),i=y.gm.Promise;return i&&function(){function e(r){var o=t.context(),s=n(r,"executor-",o,null,!1);const a=Reflect.construct(i,[s],e);return t.context(a).getCtx=function(){return o},a}y.gm.Promise=e,Object.defineProperty(e,"name",{value:"Promise"}),e.toString=function(){return i.toString()},Object.setPrototypeOf(e,i),["all","race"].forEach(function(r){const n=i[r];e[r]=function(e){let i=!1;[...e||[]].forEach(e=>{this.resolve(e).then(s("all"===r),s(!1))});const o=n.apply(this,arguments);return o;function s(e){return function(){t.emit("propagate",[null,!i],o,!1,!1),i=i||!e}}}}),["resolve","reject"].forEach(function(r){const n=i[r];e[r]=function(e){const r=n.apply(this,arguments);return e!==r&&t.emit("propagate",[e,!0],r,!1,!1),r}}),e.prototype=i.prototype;const o=i.prototype.then;i.prototype.then=function(...e){var i=this,s=r(i);s.promise=i,e[0]=n(e[0],"cb-",s,null,!1),e[1]=n(e[1],"cb-",s,null,!1);const a=o.apply(this,e);return s.nextPromise=a,t.emit("propagate",[i,!0],a,!1,!1),a},i.prototype.then[oe.Jt]=o,t.on("executor-start",function(e){e[0]=n(e[0],"resolve-",this,null,!1),e[1]=n(e[1],"resolve-",this,null,!1)}),t.on("executor-err",function(e,t,r){e[1](r)}),t.on("cb-end",function(e,r,n){t.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),t.on("propagate",function(e,r,n){if(!this.getCtx||r){const r=this,n=e instanceof Promise?t.context(e):null;let i;this.getCtx=function(){return i||(i=n&&n!==r?"function"==typeof n.getCtx?n.getCtx():n:r,i)}}})}(),t}const et={},tt="setTimeout",rt="setInterval",nt="clearTimeout",it="-start",ot=[tt,"setImmediate",rt,nt,"clearImmediate"];function st(e){const t=function(e){return(e||ie.ee).get("timer")}(e);if(et[t.debugId]++)return t;et[t.debugId]=1;var r=(0,oe.YM)(t);return r.inPlace(y.gm,ot.slice(0,2),tt+"-"),r.inPlace(y.gm,ot.slice(2,3),rt+"-"),r.inPlace(y.gm,ot.slice(3),nt+"-"),t.on(rt+it,function(e,t,n){e[0]=r(e[0],"fn-",null,n)}),t.on(tt+it,function(e,t,n){this.method=n,this.timerDuration=isNaN(e[1])?0:+e[1],e[0]=r(e[0],"fn-",this,n)}),t}const at={};function ct(e){const t=function(e){return(e||ie.ee).get("mutation")}(e);if(!y.RI||at[t.debugId])return t;at[t.debugId]=!0;var r=(0,oe.YM)(t),n=y.gm.MutationObserver;return n&&(window.MutationObserver=function(e){return this instanceof n?new n(r(e,"fn-")):n.apply(this,arguments)},MutationObserver.prototype=n.prototype),t}const{TZ:dt,d3:ut,Kp:lt,$p:ft,wW:ht,e5:pt,tH:gt,uP:mt,rw:vt,Lc:bt}=qe;class yt extends E{static featureName=dt;constructor(e){if(super(e,dt),ze(e),!y.RI)return;try{this.removeOnAbort=new AbortController}catch(e){}let t,r=0;const n=this.ee.get("tracer"),o=Je(this.ee),s=Qe(this.ee),d=st(this.ee),u=ce(this.ee),l=this.ee.get("events"),f=me(this.ee),h=Pe(this.ee),p=ct(this.ee);function g(e,t){h.emit("newURL",[""+window.location,t])}function m(){r++,t=window.location.hash,this[mt]=(0,c.t)()}function v(){r--,window.location.hash!==t&&g(0,!0);var e=(0,c.t)();this[pt]=~~this[pt]+e-this[mt],this[bt]=e}function w(e,t){e.on(t,function(){this[t]=(0,c.t)()})}this.ee.on(mt,m),s.on(vt,m),o.on(vt,m),this.ee.on(bt,v),s.on(ht,v),o.on(ht,v),this.ee.on("fn-err",(...t)=>{t[2]?.__newrelic?.[e.agentIdentifier]||(0,a.p)("function-err",[...t],void 0,this.featureName,this.ee)}),this.ee.buffer([mt,bt,"xhr-resolved"],this.featureName),l.buffer([mt],this.featureName),d.buffer(["setTimeout"+lt,"clearTimeout"+ut,mt],this.featureName),u.buffer([mt,"new-xhr","send-xhr"+ut],this.featureName),f.buffer([gt+ut,gt+"-done",gt+ft+ut,gt+ft+lt],this.featureName),h.buffer(["newURL"],this.featureName),p.buffer([mt],this.featureName),s.buffer(["propagate",vt,ht,"executor-err","resolve"+ut],this.featureName),n.buffer([mt,"no-"+mt],this.featureName),o.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),w(f,gt+ut),w(f,gt+"-done"),w(o,"new-jsonp"),w(o,"jsonp-end"),w(o,"cb-start"),h.on("pushState-end",g),h.on("replaceState-end",g),(0,b.GG)(()=>{l.emit(mt,[[{type:"load"}],window],void 0,!0)}),window.addEventListener("hashchange",g,(0,C.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",g,(0,C.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",function(){g(0,r>1)},(0,C.jT)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#r,this.importAggregator(e,()=>i.e(478).then(i.bind(i,5592)))}#r(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var wt=i(3333);const xt={},Rt=new Set;function Tt(e){return"string"==typeof e?{type:"string",size:(new TextEncoder).encode(e).length}:e instanceof ArrayBuffer?{type:"ArrayBuffer",size:e.byteLength}:e instanceof Blob?{type:"Blob",size:e.size}:e instanceof DataView?{type:"DataView",size:e.byteLength}:ArrayBuffer.isView(e)?{type:"TypedArray",size:e.byteLength}:{type:"unknown",size:0}}class Et{constructor(t,r){this.timestamp=(0,c.t)(),this.currentUrl=window.location.href,this.socketId=(0,e.LA)(8),this.requestedUrl=t,this.requestedProtocols=Array.isArray(r)?r.join(","):r||"",this.openedAt=void 0,this.protocol=void 0,this.extensions=void 0,this.binaryType=void 0,this.messageOrigin=void 0,this.messageCount=void 0,this.messageBytes=void 0,this.messageBytesMin=void 0,this.messageBytesMax=void 0,this.messageTypes=void 0,this.sendCount=void 0,this.sendBytes=void 0,this.sendBytesMin=void 0,this.sendBytesMax=void 0,this.sendTypes=void 0,this.closedAt=void 0,this.closeCode=void 0,this.closeReason=void 0,this.closeWasClean=void 0,this.connectedDuration=void 0,this.hasErrors=void 0}}class At extends E{static featureName=wt.TZ;constructor(e){super(e,wt.TZ);const t=e.init.feature_flags.includes("websockets"),r=[e.init.page_action.enabled,e.init.performance.capture_marks,e.init.performance.capture_measures,e.init.performance.resources.enabled,e.init.user_actions.enabled,t];var o;let s,u;if(o=e,p(d.hG,(e,t)=>z(e,t,o),o),function(e){p(d.fF,(t,r)=>q(t,r,e),e)}(e),ke(e),X(e),function(e){p(d.V1,(t,r)=>Z(t,r,e),e)}(e),t&&(u=function(e){if(!(0,O.dV)().o.WS)return e;const t=e.get("websockets");if(xt[t.debugId]++)return t;xt[t.debugId]=1,(0,N.G)(()=>{const e=(0,c.t)();Rt.forEach(r=>{r.nrData.closedAt=e,r.nrData.closeCode=1001,r.nrData.closeReason="Page navigating away",r.nrData.closeWasClean=!1,r.nrData.openedAt&&(r.nrData.connectedDuration=e-r.nrData.openedAt),t.emit("ws",[r.nrData],r)})});class r extends WebSocket{static name="WebSocket";static toString(){return"function WebSocket() { [native code] }"}toString(){return"[object WebSocket]"}get[Symbol.toStringTag](){return r.name}#s(e){(e.__newrelic??={}).socketId=this.nrData.socketId,this.nrData.hasErrors??=!0}constructor(...e){super(...e),this.nrData=new Et(e[0],e[1]),this.addEventListener("open",()=>{this.nrData.openedAt=(0,c.t)(),["protocol","extensions","binaryType"].forEach(e=>{this.nrData[e]=this[e]}),Rt.add(this)}),this.addEventListener("message",e=>{const{type:t,size:r}=Tt(e.data);this.nrData.messageOrigin??=e.origin,this.nrData.messageCount=(this.nrData.messageCount??0)+1,this.nrData.messageBytes=(this.nrData.messageBytes??0)+r,this.nrData.messageBytesMin=Math.min(this.nrData.messageBytesMin??1/0,r),this.nrData.messageBytesMax=Math.max(this.nrData.messageBytesMax??0,r),(this.nrData.messageTypes??"").includes(t)||(this.nrData.messageTypes=this.nrData.messageTypes?"".concat(this.nrData.messageTypes,",").concat(t):t)}),this.addEventListener("close",e=>{this.nrData.closedAt=(0,c.t)(),this.nrData.closeCode=e.code,this.nrData.closeReason=e.reason,this.nrData.closeWasClean=e.wasClean,this.nrData.connectedDuration=this.nrData.closedAt-this.nrData.openedAt,Rt.delete(this),t.emit("ws",[this.nrData],this)})}addEventListener(e,t,...r){const n=this,i="function"==typeof t?function(...e){try{return t.apply(this,e)}catch(e){throw n.#s(e),e}}:t?.handleEvent?{handleEvent:function(...e){try{return t.handleEvent.apply(t,e)}catch(e){throw n.#s(e),e}}}:t;return super.addEventListener(e,i,...r)}send(e){if(this.readyState===WebSocket.OPEN){const{type:t,size:r}=Tt(e);this.nrData.sendCount=(this.nrData.sendCount??0)+1,this.nrData.sendBytes=(this.nrData.sendBytes??0)+r,this.nrData.sendBytesMin=Math.min(this.nrData.sendBytesMin??1/0,r),this.nrData.sendBytesMax=Math.max(this.nrData.sendBytesMax??0,r),(this.nrData.sendTypes??"").includes(t)||(this.nrData.sendTypes=this.nrData.sendTypes?"".concat(this.nrData.sendTypes,",").concat(t):t)}try{return super.send(e)}catch(e){throw this.#s(e),e}}close(...e){try{super.close(...e)}catch(e){throw this.#s(e),e}}}return y.gm.WebSocket=r,t}(this.ee)),y.RI){if(me(this.ee),ce(this.ee),s=Pe(this.ee),e.init.user_actions.enabled){function l(t){const r=(0,ve.D)(t);return e.beacons.includes(r.hostname+":"+r.port)}function f(){s.emit("navChange")}wt.Zp.forEach(e=>(0,C.sp)(e,e=>(0,a.p)("ua",[e],void 0,this.featureName,this.ee),!0)),wt.qN.forEach(e=>{const t=(0,R.s)(e=>{(0,a.p)("ua",[e],void 0,this.featureName,this.ee)},500,{leading:!0});(0,C.sp)(e,t)}),y.gm.addEventListener("error",()=>{(0,a.p)("uaErr",[],void 0,n.K7.genericEvents,this.ee)},(0,C.jT)(!1,this.removeOnAbort?.signal)),this.ee.on("open-xhr-start",(e,t)=>{l(e[1])||t.addEventListener("readystatechange",()=>{2===t.readyState&&(0,a.p)("uaXhr",[],void 0,n.K7.genericEvents,this.ee)})}),this.ee.on("fetch-start",e=>{e.length>=1&&!l(xe(e[0]))&&(0,a.p)("uaXhr",[],void 0,n.K7.genericEvents,this.ee)}),s.on("pushState-end",f),s.on("replaceState-end",f),window.addEventListener("hashchange",f,(0,C.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",f,(0,C.jT)(!0,this.removeOnAbort?.signal))}if(e.init.performance.resources.enabled&&y.gm.PerformanceObserver?.supportedEntryTypes.includes("resource")){new PerformanceObserver(e=>{e.getEntries().forEach(e=>{(0,a.p)("browserPerformance.resource",[e],void 0,this.featureName,this.ee)})}).observe({type:"resource",buffered:!0})}}t&&u.on("ws",e=>{(0,a.p)("ws-complete",[e],void 0,this.featureName,this.ee)});try{this.removeOnAbort=new AbortController}catch(h){}this.abortHandler=()=>{this.removeOnAbort?.abort(),this.abortHandler=void 0},r.some(e=>e)?this.importAggregator(e,()=>i.e(478).then(i.bind(i,8019))):this.deregisterDrain()}}var St=i(2646);const _t=new Map;function Ot(e,t,r,n,i=!0){if("object"!=typeof t||!t||"string"!=typeof r||!r||"function"!=typeof t[r])return(0,l.R)(29);const o=function(e){return(e||ie.ee).get("logger")}(e),s=(0,oe.YM)(o),a=new St.y(ie.P);a.level=n.level,a.customAttributes=n.customAttributes,a.autoCaptured=i;const c=t[r]?.[oe.Jt]||t[r];return _t.set(c,a),s.inPlace(t,[r],"wrap-logger-",()=>_t.get(c)),o}var Nt=i(1910);class It extends E{static featureName=F.TZ;constructor(e){var t;super(e,F.TZ),t=e,p(d.$9,(e,r)=>G(e,r,t),t),function(e){p(d.Wb,(t,r,{customAttributes:n={},level:i=F.p_.INFO}={})=>{Ot(e.ee,t,r,{customAttributes:n,level:i},!1)},e)}(e),X(e);const r=this.ee;["log","error","warn","info","debug","trace"].forEach(e=>{(0,Nt.i)(y.gm.console[e]),Ot(r,y.gm.console,e,{level:"log"===e?"info":e})}),this.ee.on("wrap-logger-end",function([e]){const{level:t,customAttributes:n,autoCaptured:i}=this;(0,V.R)(r,e,n,t,i)}),this.importAggregator(e,()=>i.e(478).then(i.bind(i,5288)))}}new class extends r{constructor(e){var t;(super(),y.gm)?(this.features={},(0,O.bQ)(this.agentIdentifier,this),this.desiredFeatures=new Set(e.features||[]),this.desiredFeatures.add(_),this.runSoftNavOverSpa=[...this.desiredFeatures].some(e=>e.featureName===n.K7.softNav),(0,s.j)(this,e,e.loaderType||"agent"),t=this,p(d.cD,function(e,r,n=!1){if("string"==typeof e){if(["string","number","boolean"].includes(typeof r)||null===r)return g(t,e,r,d.cD,n);(0,l.R)(40,typeof r)}else(0,l.R)(39,typeof e)},t),function(e){p(d.Dl,function(t){if("string"==typeof t||null===t)return g(e,"enduser.id",t,d.Dl,!0);(0,l.R)(41,typeof t)},e)}(this),function(e){p(d.nb,function(t){if("string"==typeof t||null===t)return g(e,"application.version",t,d.nb,!1);(0,l.R)(42,typeof t)},e)}(this),function(e){p(d.d3,function(){e.ee.emit("manual-start-all")},e)}(this),function(e){p(d.Pv,function(t=!0){if("boolean"==typeof t){if((0,a.p)(d.Pl+d.Pv,[t],void 0,"session",e.ee),e.runtime.consented=t,t){const t=e.features.page_view_event;t.onAggregateImported.then(e=>{const r=t.featAggregate;e&&!r.sentRum&&r.sendRum()})}}else(0,l.R)(65,typeof t)},e)}(this),this.run()):(0,l.R)(21)}get config(){return{info:this.info,init:this.init,loader_config:this.loader_config,runtime:this.runtime}}get api(){return this}run(){try{const e=function(e){const t={};return o.forEach(r=>{t[r]=!!e[r]?.enabled}),t}(this.init),t=[...this.desiredFeatures];t.sort((e,t)=>n.P3[e.featureName]-n.P3[t.featureName]),t.forEach(t=>{if(!e[t.featureName]&&t.featureName!==n.K7.pageViewEvent)return;if(this.runSoftNavOverSpa&&t.featureName===n.K7.spa)return;if(!this.runSoftNavOverSpa&&t.featureName===n.K7.softNav)return;const r=function(e){switch(e){case n.K7.ajax:return[n.K7.jserrors];case n.K7.sessionTrace:return[n.K7.ajax,n.K7.pageViewEvent];case n.K7.sessionReplay:return[n.K7.sessionTrace];case n.K7.pageViewTiming:return[n.K7.pageViewEvent];default:return[]}}(t.featureName).filter(e=>!(e in this.features));r.length>0&&(0,l.R)(36,{targetFeature:t.featureName,missingDependencies:r}),this.features[t.featureName]=new t(this)})}catch(e){(0,l.R)(22,e);for(const e in this.features)this.features[e].abortHandler?.();const t=(0,O.Zm)();delete t.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator;return t.ee.get(this.agentIdentifier).abort(),!1}}}({features:[_e,_,P,Ue,Ve,j,J,At,It,Ze,yt],loaderType:"spa"})})()})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="p:domain_verify" content="f028daf004ac7bca8d5153bdc421d9cf" />
<title>Roger Pot | Sedbergh | Garsdale | The Lake District And Cumbria | Self Catering Holiday Cottage</title>
<meta name="ahrefs-site-verification" content="f7821e51257ec826bd9c6fe13e11daf9a4dae5d7e7458c5d47204b82a92f7ae8">
<meta name="google-site-verification" content="5GijT0XFJXwiH9jHTsqza51Fg4MVuEOiJ2axKT29kQI">
<meta name="msvalidate.01" content="D4B7DB3286AFEAA40E5768E45CC3D405" />
<meta name="msvalidate.01" content="ABDD40F8E3258DF68F3008339ED87D21" />
<meta name="description" content="Roger Pot - A beautiful, detached house resting in the countryside of Garsdale near Sedbergh, Cumbria. Pet-friendly. Countryside views. Woodburning stove. Off-road parking. Sedbergh 6.3 miles; Kendal 17.5 miles; Silverdale 28 miles.">
<meta name="norton-safeweb-site-verification" content="n6hx4tuhiz3zfjr64-s69y3oyt2k9y4xn3dcynogvu8braq65ia195k1bozgfb2ee4faedm2144g8ajbxuktc68zomqfl2wgeo3mjy9silrt6-btdl3ozwisprennb-1" />
<meta name="google-site-verification" content="i2gP0rn5qdhR9djvy5THOTGttEFROKrCDGOdA-qOqm4" />
<link rel="canonical" href="https://www.sykescottages.co.uk/cottage/Lake-District-Yorkshire-Dales-South-Garsdale/Roger-Pot-1131260.html">
<link
rel="preconnect"
href="https://images-cdn.sykesassets.co.uk"
>
<link rel="preconnect" href="https://cdn.cookielaw.org">
<link rel="preload" as="image" href="https://images-cdn.sykesassets.co.uk/images/property_images/1500x1125/1131260/sc_1685979088_1131260_2.jpeg?access=1214T8130T840">
<link rel="stylesheet" type="text/css" href="/css/vendor/jquery-ui-1.10.4.custom.min.6bd67d14c1d557de4b371266af5443d4.css">
<link rel="stylesheet" type="text/css" href="/css/white_label/sykes-desktop-style.9e7d3a6caa809ba92994b55ec455060b.css">
<link rel="stylesheet" type="text/css" href="https://assets.forgehg.cloud/agency/brand-palettes/latest/themes/sykes.css">
<link rel="stylesheet" type="text/css" href="https://assets.forgehg.cloud/agency/forge-icon-fonts/latest/anvil/anvil.css">
<link rel="stylesheet" type="text/css" href="/css/modal_component.30694e1935d7b0a96a486d23b68cf772.css">
<link rel="stylesheet" type="text/css" href="/css/modals/modal-base.3ee63cc2dd4647de436532b7371c00db.css">
<link rel="stylesheet" type="text/css" href="/css/white_label/forge-rating-style.7498bda17152e39d691325af3e1ffb12.css">
<link rel="stylesheet" type="text/css" href="/css/experiments/compiled/favourite-tooltip-phoen1314.b7afa72746f93629f10e8abc0e809e86.css">
<link rel="stylesheet" type="text/css" href="/css/experiments/phoen866.2ae79cc46ed0010ec95245c32dd7edb1.css">
<link rel="stylesheet" type="text/css" href="/css/white_label/forge-helper-classes-style.c01a6f46c688c87de0db76335d818ec4.css">
<link rel="stylesheet" type="text/css" href="/css/white_label/forge-information-box-style.13735f55cd39281ea1db7827aae97bae.css">
<link rel="stylesheet" type="text/css" href="/css/white_label/forge-price-match-guarantee-style.453f3d083cf43f96a7e64ac490c6cfd1.css">
<link
href="https://api.mapbox.com/mapbox.js/v3.2.0/mapbox.css"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link
href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.css"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link rel="apple-touch-icon" href="https://assets.forgehg.cloud/agency/brand-icons/latest/sykes/favicon-32x32.png">
<link rel="icon"
type="image/png"
href="https://assets.forgehg.cloud/agency/brand-icons/latest/sykes/favicon-32x32.png">
<style type="text/css">
@media all and (min-width: 320px) {
/* Common */
button[data-navigation] svg {
width: 15px;
}
button[data-navigation="previous"] svg {
transform: rotate(90deg);
}
button[data-navigation="next"] svg {
transform: rotate(-90deg);
}
/* Hides the button label from UI but ensures screen readers can read the label */
button[data-navigation] .screen-reader {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
white-space: nowrap;
width: 1px;
}
/* Images next-back buttons */
#property_top .slider button[data-navigation] {
width: 40px;
height: 40px;
border-radius: 40px;
position: absolute;
cursor: pointer;
top: calc(50% - 5px);
background-color: rgba(0,0,0,0.7);
}
#property_top .slider button[data-navigation]::before {
display: none;
}
#property_top .slider button[data-navigation] svg {
fill: #ffffff;
width: 20px;
position: absolute;
top: 0;
}
#property_top .slider button[data-navigation="previous"] svg {
left: 8px;
}
#property_top .slider button[data-navigation="next"] svg {
right: 8px;
}
}
@media all and (max-width: 767px) {
/* Mobile calendar next back buttons */
button.nav-links svg {
fill: #666666;
}
/* Mobile results pagination */
.pagination-kep15283 button.pagination-button {
display: inline-block;
padding: 16px 16px;
line-height: 0px;
letter-spacing: 0px;
border-radius: 4px;
border: solid 1px #cccccc;
background-color: #ffffff;
opacity: 0.3;
}
.pagination-kep15283 button.pagination-button.active {
opacity: 1.0;
box-shadow: 0 4px 15px 0 rgba(0, 0, 40, 0.15);
}
.pagination-kep15283 button.pagination-button.active:active {
box-shadow: none;
}
}
@media all and (min-width: 768px) {
/* Desktop calendar next back buttons */
#calendar button[data-navigation] {
width: 32px;
height: 32px;
line-height: 32px;
border-radius: 20px;
background-color: #ffffff;
padding: 0;
margin: 0;
position: absolute;
top: 4px;
}
#calendar button[data-navigation="previous"] {
left: 0;
}
#calendar button[data-navigation="next"] {
right: 0;
}
#calendar button[data-navigation] svg {
fill: #666666;
}
}
</style>
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="/css/lteie8.b5e02be9e021bd45c0dbe4806338e39f.css">
<link rel="stylesheet" type="text/css" href="/css/sykes-lteie8.7960b4a75d49fe5ba9f7542462fc1f78.css">
<script type="text/javascript" src="/js/build/vendor/ie/html5.60cc5dd89daffc74fa72bf8763447280.js"></script>
<script type="text/javascript" src="/js/build/vendor/ie/selectivizr-min.2c13f8459cd3a884a0ed305e60226cc5.js"></script>
<![endif]-->
<link href='https://fonts.googleapis.com/css?family=Inter:400,500,600,700&display=swap' rel='stylesheet'>
<script type="text/javascript">
var geoipinfo = {"country_code":"GB","country_code3":"GBR","country_name":"United Kingdom","region":"J9","city":"Arnold","postal_code":"NG5","latitude":53,"longitude":-1.1332999999999913,"area_code":null,"dma_code":null,"metro_code":null,"continent_code":"EU"};
var experiments = {"page_load":[],"on_resize":[],"on_scroll":[]};
var no_right_navigation = true;
var calendar_months = 25;
var toggleDistanceFieldTITANS579 = true;
var switch_admedo_for_facebook = true;
var searchPolygon = -1;
var siteTracking14929 = true;
var Search_TomsPolygons3293 = true;
var search_countries = {"england":{"name":"England","id":8493,"slug":"england","popular":null,"regions":[{"name":"Popular Regions in England","id":-1,"slug":"","areas":[{"name":"Lake District","id":781,"slug":"lake-district","popular":"1"},{"name":"Cornwall","id":8496,"slug":"cornwall","popular":"2"},{"name":"Yorkshire Dales","id":779,"slug":"yorkshire-dales","popular":"3"},{"name":"Peak District","id":770,"slug":"peak-district","popular":"4"},{"name":"Devon","id":8498,"slug":"devon","popular":"5"},{"name":"Northumberland","id":8513,"slug":"northumberland","popular":"6"}]},{"name":"North East England - All","id":8677,"slug":"north-east-england","popular":null,"areas":[{"name":"Yorkshire Dales","id":779,"slug":"yorkshire-dales","popular":"3"},{"name":"Northumberland","id":8513,"slug":"northumberland","popular":"6"},{"name":"North Yorkshire (incl. Whitby)","id":8515,"slug":"north-yorkshire","popular":null},{"name":"East Yorkshire","id":8500,"slug":"east-riding-of-yorkshire","popular":null},{"name":"West Yorkshire","id":8525,"slug":"west-yorkshire","popular":null},{"name":"South Yorkshire","id":8522,"slug":"south-yorkshire","popular":null}]},{"name":"North West England - All","id":8514,"slug":"north-west-england","popular":null,"areas":[{"name":"Lake District","id":781,"slug":"lake-district","popular":"1"},{"name":"Peak District","id":770,"slug":"peak-district","popular":"4"},{"name":"Cheshire (incl. Chester)","id":8495,"slug":"cheshire","popular":null},{"name":"Lancashire","id":8508,"slug":"lancashire","popular":null},{"name":"Cumbria","id":8616,"slug":"cumbria","popular":null}]},{"name":"Central England - All","id":8686,"slug":"central-england","popular":null,"areas":[{"name":"Shropshire","id":8519,"slug":"shropshire","popular":null},{"name":"Cotswolds","id":831,"slug":"cotswolds","popular":null},{"name":"Derbyshire","id":8617,"slug":"derbyshire","popular":null},{"name":"Lincolnshire","id":8510,"slug":"lincolnshire","popular":null},{"name":"Herefordshire","id":8503,"slug":"herefordshire","popular":null},{"name":"Worcestershire","id":8625,"slug":"worcestershire","popular":null},{"name":"Oxfordshire","id":8621,"slug":"oxfordshire","popular":null},{"name":"Warwickshire","id":8623,"slug":"warwickshire","popular":null},{"name":"Rutland","id":8518,"slug":"rutland","popular":null},{"name":"Nottinghamshire","id":8516,"slug":"nottinghamshire","popular":null},{"name":"Leicestershire","id":8509,"slug":"leicestershire","popular":null}]},{"name":"South West England - All","id":8521,"slug":"south-west-england","popular":null,"areas":[{"name":"Cornwall","id":8496,"slug":"cornwall","popular":"2"},{"name":"Dorset","id":8499,"slug":"dorset","popular":null},{"name":"Devon","id":8498,"slug":"devon","popular":"5"},{"name":"Somerset","id":8520,"slug":"somerset","popular":null},{"name":"Gloucestershire","id":8619,"slug":"gloucestershire","popular":null},{"name":"Wiltshire","id":8526,"slug":"wiltshire","popular":null}]},{"name":"East Anglia - All","id":8528,"slug":"east-anglia","popular":null,"areas":[{"name":"Norfolk","id":8511,"slug":"norfolk","popular":null},{"name":"Suffolk","id":8523,"slug":"suffolk","popular":null},{"name":"Essex","id":8501,"slug":"essex","popular":null},{"name":"Cambridgeshire","id":8494,"slug":"cambridgeshire","popular":null}]},{"name":"South Coast England - All","id":8690,"slug":"south-coast-england","popular":null,"areas":[{"name":"New Forest National Park","id":8736,"slug":"new-forest-national-park","popular":null},{"name":"Isle of Wight","id":8505,"slug":"isle-of-wight","popular":null},{"name":"Hampshire","id":8502,"slug":"hampshire","popular":null},{"name":"Kent","id":8506,"slug":"kent","popular":null},{"name":"Sussex","id":8524,"slug":"sussex","popular":null},{"name":"Buckinghamshire","id":8627,"slug":"buckinghamshire","popular":null},{"name":"Hertfordshire","id":8663,"slug":"hertfordshire","popular":null},{"name":"London","id":8629,"slug":"london","popular":null}]}]},"wales":{"name":"Wales","id":8588,"slug":"wales","popular":null,"regions":[{"name":"Popular Regions in Wales","id":-1,"slug":"","areas":[{"name":"Snowdonia","id":846,"slug":"snowdonia","popular":"1"},{"name":"Anglesey","id":8589,"slug":"isle-of-anglesey","popular":"2"},{"name":"Pembrokeshire (incl. Tenby)","id":8593,"slug":"pembrokeshire","popular":"3"},{"name":"Conwy (incl. Llandudno)","id":8591,"slug":"conwy","popular":"4"}]},{"name":"North Wales - All","id":8673,"slug":"north-wales","popular":null,"areas":[{"name":"Snowdonia","id":846,"slug":"snowdonia","popular":"1"},{"name":"Anglesey","id":8589,"slug":"isle-of-anglesey","popular":"2"},{"name":"Conwy (incl. Llandudno)","id":8591,"slug":"conwy","popular":"4"},{"name":"Llyn Peninsula (incl. Abersoch)","id":8592,"slug":"llyn-peninsula","popular":null}]},{"name":"South & West Wales - All","id":8674,"slug":"south-wales","popular":null,"areas":[{"name":"Pembrokeshire (incl. Tenby)","id":8593,"slug":"pembrokeshire","popular":"3"},{"name":"Monmouthshire","id":8604,"slug":"monmouthshire","popular":null},{"name":"Glamorgan","id":8732,"slug":"glamorgan","popular":null},{"name":"Carmarthenshire","id":8599,"slug":"carmarthenshire","popular":null}]},{"name":"Mid Wales - All","id":8675,"slug":"mid-wales","popular":null,"areas":[{"name":"Cardigan Bay","id":851,"slug":"cardigan-bay","popular":null},{"name":"Brecon Beacons","id":8590,"slug":"brecon-beacons","popular":null},{"name":"Powys","id":8607,"slug":"powys","popular":null}]}]},"scotland":{"name":"Scotland","id":8552,"slug":"scotland","popular":null,"regions":[{"name":"Popular Regions in Scotland","id":-1,"slug":"","areas":[{"name":"Cairngorms National Park","id":838,"slug":"cairngorms","popular":"1"},{"name":"Dumfries & Galloway","id":8557,"slug":"dumfries-and-galloway","popular":"2"},{"name":"Edinburgh & The Lothians","id":8705,"slug":"edinburgh-and-the-lothians","popular":"3"},{"name":"Scottish Borders","id":8670,"slug":"scottish-borders","popular":"4"}]},{"name":"Northern Scotland - All","id":8700,"slug":"northern-scotland","popular":null,"areas":[{"name":"Cairngorms National Park","id":838,"slug":"cairngorms","popular":"1"},{"name":"Aberdeen & Aberdeenshire","id":8702,"slug":"aberdeen-and-aberdeenshire","popular":null},{"name":"The Highlands","id":8679,"slug":"scottish-highlands","popular":null},{"name":"Dundee & Angus","id":8703,"slug":"dundee-and-angus","popular":null},{"name":"Perthshire","id":8562,"slug":"perth-and-kinross","popular":null},{"name":"Shetland","id":8569,"slug":"shetland-islands","popular":null}]},{"name":"Southern Scotland - All","id":8701,"slug":"southern-scotland","popular":null,"areas":[{"name":"Greater Glasgow & The Clyde Valley","id":8706,"slug":"greater-glasgow-and-the-clyde-valley","popular":null},{"name":"Argyll & The Isles","id":8570,"slug":"argyll-and-bute","popular":null},{"name":"Ayrshire & Arran","id":8704,"slug":"ayrshire-and-arran","popular":null},{"name":"Dumfries & Galloway","id":8557,"slug":"dumfries-and-galloway","popular":"2"},{"name":"Edinburgh & The Lothians","id":8705,"slug":"edinburgh-and-the-lothians","popular":"3"},{"name":"Loch Lomond, The Trossachs, Stirling & Forth Valley","id":8707,"slug":"loch-lomond-the-trossachs-stirling-and-forth-valley","popular":null},{"name":"The Kingdom of Fife","id":8559,"slug":"fife","popular":null},{"name":"Scottish Borders","id":8670,"slug":"scottish-borders","popular":"4"}]},{"name":"Scotland Islands","id":9054,"slug":"scottish-islands","popular":null,"areas":[{"name":"Outer Hebrides","id":8567,"slug":"western-isles","popular":null},{"name":"Skye","id":8560,"slug":"isle-of-skye","popular":null},{"name":"Lewis","id":8767,"slug":"lewis","popular":null},{"name":"Harris","id":8768,"slug":"harris","popular":null},{"name":"Mull","id":9051,"slug":"mull","popular":null},{"name":"Orkney","id":8568,"slug":"orkney-islands","popular":null}]}]},"northern-ireland":{"name":"Northern Ireland","id":8548,"slug":"northern-ireland","popular":null,"regions":[{"name":"County Antrim","id":8549,"slug":"county-antrim","popular":null},{"name":"County Armagh","id":9027,"slug":"county-armagh","popular":null},{"name":"County Derry","id":8550,"slug":"county-londonderry","popular":null},{"name":"County Down","id":9025,"slug":"county-down","popular":null},{"name":"County Fermanagh","id":8551,"slug":"county-fermanagh","popular":null},{"name":"County Tyrone","id":9026,"slug":"county-tyrone","popular":null}]},"ireland":{"name":"Ireland","id":8532,"slug":"ireland","popular":null,"regions":[{"name":"Popular Regions in Ireland","id":-1,"slug":"","areas":[{"name":"Shancroagh & County Galway","id":8536,"slug":"county-galway","popular":"1"},{"name":"County Kerry","id":8537,"slug":"county-kerry","popular":"2"},{"name":"Kinsale & County Cork","id":8534,"slug":"county-cork","popular":"3"},{"name":"Westport & County Mayo","id":8538,"slug":"county-mayo","popular":"4"},{"name":"County Donegal","id":8535,"slug":"county-donegal","popular":"5"}]},{"name":"West Ireland - All","id":8547,"slug":"west-ireland","popular":null,"areas":[{"name":"Shancroagh & County Galway","id":8536,"slug":"county-galway","popular":"1"},{"name":"County Clare","id":8533,"slug":"county-clare","popular":null},{"name":"Westport & County Mayo","id":8538,"slug":"county-mayo","popular":"4"}]},{"name":"South Ireland - All","id":8546,"slug":"south-ireland","popular":null,"areas":[{"name":"County Kerry","id":8537,"slug":"county-kerry","popular":"2"},{"name":"Kinsale & County Cork","id":8534,"slug":"county-cork","popular":"3"}]},{"name":"East Ireland - All","id":8544,"slug":"east-ireland","popular":null,"areas":[{"name":"County Wexford","id":8540,"slug":"county-wexford","popular":null},{"name":"County Wicklow","id":8541,"slug":"county-wicklow","popular":null}]},{"name":"North Ireland - All","id":8630,"slug":"north-ireland","popular":null,"areas":[{"name":"County Donegal","id":8535,"slug":"county-donegal","popular":"5"},{"name":"County Sligo","id":8539,"slug":"county-sligo","popular":null},{"name":"Roscommon","id":807,"slug":"roscommon","popular":null}]}]}};
var removeUnloadListener20081 = false;
var allTownsForAnyRegionsTitans577 = false;
var multiSelectdate13911 = true;
var largerImages10249 = true;
var mergeDatesInputs19558 = false;
var contentsquare_switch = true;
var contentsquare_popups_switch = true;
var customGoogleAnalyticsDebugger4226 = false;
var stopGAFiringEvents = false;
var routerController = "property";
var routerMethod = "index";
var customer_payment_days_prior = "42";
var propertySeenInSearchSnowflake = true;
var oneNightStay1418 = true;
var mapboxApiKey = "pk.eyJ1IjoiZm9yZ2Vob2xpZGF5cyIsImEiOiJjbHJ1aXptemwwYWpiMmtvNm00eHZuMnRoIn0.8suVenXf3QAaxAVdvIF_YA";
var fourNightsForThree = true;
var isResearchSession = false;
var useDatabaseForImageAltTags = true;
var brand = "sykes";
var sliderActive = true;
var showleaflet = true;
var favourites_add_message = "Add to favourites";
var favourites_del_message = "Remove from favourites";
var distance10817 = false;
var showAvailable15821 = true;
var removeThumbsHoverAction19447 = true;
var googleMaps4814 = false;
var searchRegionSlugs17976 = true;
var reviewSearch20218 = true;
var hideReviewsEarlier = true;
var paginateReviewsOnFilterPhoen987 = false;
var hideReviewsEarlierHbt1314 = false;
var moveReviewsToBottomHbt1594 = false;
var quickLinksPHOEN584 = false;
var snowflakeEvents17381 = true;
var property_id = "1131260";
var property_changeover = "0";
var display_next_year_price = 0;
var countrycode = "EN";
var changeover = "6";
var ScrollActiveThumbnail39 = false;
var reduceFeaturedDurationOptionsPhoen1635 = true;
var calendar_interaction_invite = true;
var animate_image_carousel = true;
var RecentViews2419 = 29;
var calendarSortByPriceAcending1519 = false;
var recentViews4721 = 29;
var allowSelectionOfBrokenWeeks20452 = true;
var dimension21 = "property";
var dimension22 = "-";
var dimension23 = "-";
var dimension24 = "-";
var dimension36 = "England";
var dimension37 = "North Yorkshire (incl. Whitby)";
var dimension38 = "Garsdale";
var dimension31 = "1131260";
var lightboxGalleryPHOEN410 = true;
var animateImages11066 = false;
var calendarCheapest19862 = false;
var numberOfCustomersWithRating20632 = false;
var noonFlexiPriceAsAddOnPhoen866 = true;
var addThumbnailsToImageCarousel10766 = true;
var clickMainImageForLarger19290 = true;
var showTenMoreReviews17315 = true;
var standardisemapicons17986 = true;
var removeAutoplay18383 = true;
var atlasIntegration538 = false;
var isBachCare = false;
var isPropertyBrandForestHoliday = false;
var propertyBrandId = 1;
var isExternalBookingBrand = false;
var startMobileCalendarOnMonday = false;
var mobileCalendarMondayAlignmentPhoen1511 = false;
var removeStandardVsFlexiPreSelectionCER882 = true;
var noonFlexiLdRemovalCER908JsVar = true;
var supportMultipleChangeoversKRA2999 = true;
var piklFlexibleCancellationCER964 = true;
</script>
<script type="text/javascript">
var defaultConsentPreferences = {
ad_storage: "denied",
ad_user_data: "denied",
ad_personalization: "denied",
analytics_storage: "denied",
personalization_storage: "denied",
wait_for_update: 500
};
window.dataLayer = window.dataLayer || [];
if (typeof gtag === 'undefined') {
function gtag() {
dataLayer.push(arguments);
}
}
gtag("consent", "default", {analytics_storage: "granted", region: ["GB"], wait_for_update: 500});
gtag("consent", "default", defaultConsentPreferences);
</script>
<meta property="og:title" content="Roger Pot" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://www.sykescottages.co.uk" />
<meta property="og:image" content="https://images-cdn.sykesassets.co.uk/images/property_images/600x450/1131260/sc_1685979088_1131260_2.jpeg?access=3914T3864T840"/>
<meta property="og:site_name" content="Sykes Cottages" /><meta name="twitter:card" content="product">
<meta name="twitter:site" content="@sykescottages">
<meta name="twitter:title" content="Roger Pot | Self Catering Cottage In Sedbergh">
<meta name="twitter:description" content="A beautiful, detached house resting in the countryside of Garsdale near Sedbergh, Cumbria. Pet-friendly. Countryside views. Woodburning stove. Off-road parking. Sedbergh 6.3 miles; Kendal 17.5 miles; Silverdale 28 miles.">
<meta property="twitter:image:src" content="https://images-cdn.sykesassets.co.uk/images/property_images/600x450/1131260/sc_1685979088_1131260_2.jpeg?access=3914T3864T840"/>
<meta name="twitter:data1" content="4">
<meta name="twitter:label1" content="Tick Rating">
<meta name="twitter:data2" content="6">
<meta name="twitter:label2" content="Sleeps">
<script>
window.dataLayer = window.dataLayer || [];
var booking_price = null;
</script>
<!-- Google Tag Manager -->
<script >(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XPMX');</script>
<!--End Google Tag Manager-->
<script>var ga_tracking_code = 'UA-204501-1';</script>
<script type="text/javascript">
function OptanonWrapper() {
fetch('/utilities/consent', {
method: "GET"
});
var cookieCallback = function () {
document.removeEventListener("DOMContentLoaded", cookieCallback);
window.removeEventListener("load", cookieCallback);
if (typeof CookieComplianceProvider === typeof void 0) return;
CookieComplianceProvider.getCookieComplianceManager().init();
}
if (document.readyState !== "loading") {
window.setTimeout(cookieCallback);
} else {
document.addEventListener("DOMContentLoaded", cookieCallback);
window.addEventListener("load", cookieCallback);
}
}
</script>
<script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8"
data-domain-script="5a7bf3ae-816e-4e77-a4df-becda8836b47"></script>
<script>
window.geoCountry = window.geoCountry || 'GB';
</script>
<script type="text/javascript" src="/js/cookies/cookie_compliance.5e881b95b8ae9e70696339093b7431e1.js"></script>
<script src="/js/modal-component.js" defer></script>
<script type="text/javascript" src="/js/build/vendor/jquery-1.10.2.min.9b1666e54e71bdab9ad4870111aea412.js"></script>
<script type="text/javascript" src="/js/build/sykesga.9127165f23cab04b720f31b32303a7b3.js"></script>
<script type="text/javascript" src="/js/build/vendor/angular/angular-1.8.2.min.7b904dcb2cea2d7e8a49ef3ad2ce111b.js"></script>
<script type="text/javascript" src="/js/build/vendor/moment.min.90c0f6bf73ccfe485fe882c28e938738.js"></script>
<script type="text/javascript" src="/js/build/module/HttpTransformRequest.759051e0eb996105fefd4053dcfc89b1.js"></script>
<script type="text/javascript" src="/js/build/calendar.192a1e0ef64c15b10f9c3dc3ad7a4075.js"></script>
<script
type="text/plain"
src="//assistjs.skimresources.com/js/skimtag.sykescottages.co.uk.js"
class="optanon-category-C0004"
async defer
></script>
<script type="text/javascript" src="/js/build/vendor/jquery-ui-1.10.4.custom.min.28185e720c7c1cd48ddab7b6b9b70c7f.js" defer></script>
<script type="text/javascript" src="/js/build/common.3efd63800e648fc2df249e7ac25fbcc5.js" defer></script>
<script type="text/javascript" src="/js/build/performance.6895403b09ad095dbd8838214df2b8c0.js" defer></script>
<script type="text/javascript" src="/js/build/account.26d279b3e0dc65ea1f7e9c741293c184.js" defer></script>
<script type="text/javascript" src="/js/build/tracking-abstract.4ea4043c655d619aeb5c494449080010.js" defer></script>
<script type="text/javascript" src="/js/build/dom-event-emitter.af692549067aff1c4e41f510636ef1d4.js" defer></script>
<script type="text/javascript" src="/js/build/snowflake.d45032db157b42fe3add840cfcfc85db.js" defer></script>
<script type="text/javascript" src="/js/build/slider.fce108f67fa9d9a24d032a1012065383.js" defer></script>
<script type="text/javascript" src="/js/build/favourites.b5b0b605d74d520d2f63691c162399f6.js" defer></script>
<script type="text/javascript" src="/js/build/vendor/leaflet.61712123263553355c0780e81f19a005.js" defer></script>
<script type="text/javascript" src="/js/build/property.d9c1eaeb7f49a7a760f1d2d21796da7f.js" defer></script>
<script type="text/javascript" src="https://www.sykescottages.co.uk//js/forge/components/modal-base.js" defer></script>
<script type="text/javascript" src="/js/build/posthog/searchform-tracking.49254bc1a5ed3d50bea696a72440c2e1.js" defer></script>
<script type="text/javascript" src="https://api.mapbox.com/mapbox.js/v3.2.0/mapbox.js" defer></script>
<script type="text/javascript" src="https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.js" defer></script>
<style>
.text_content_container.kep17419 h1,
.text_content_container.kep17419 h2,
.cms-content .content h1,
.property h2:not(#property_title h2, #twilio-webchat-widget-root h2, #parks-modal h2),
#property_title h1[itemprop="name"] {
font-family: Arial, sans-serif;
font-size: 24px !important;
font-weight: bold !important;
line-height: 1.33 !important;
color: #111111 !important;
}
#property_title h1[itemprop="name"] {
font-size: 28px !important;
}
</style>
<script
type="text/plain"
class="optanon-category-C0004"
src="/js/collect.js"
integrity="sha512-mxojk7tk9d8rFxUwnKf5pAqTg/PLGnc+RNkYNR0g44CuwBVKcuG8ak19XYTTdxi/Qj53419hD9b6fJ6L62U8Ng=="
crossorigin="anonymous"
defer
></script>
<style>
#ot-sdk-btn-floating, .ot-floating-button {
display:none !important;
}
</style>
</head>
<body
data-theme="sykes"
data-typography
data-map="sykes" data-map_icons_path=""
data-map_cluster_url=""
data-map_pin_url=""
class="
property cta-colour-3569
use-arial-3651
"
>
<script>
dataLayer.push({
'ecommerce': {
'detail': {
'actionField': {'list': ''},
'products': [{
'name': 'Roger Pot',
'id': '1131260',
'brand': '1',
'category': 'Garsdale near Sedbergh, Yorkshire Dales'
}]
}
}
});
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<style>
body {
min-width: 620px;
}
</style>
<style>
.ratings svg {
margin: -1.4px!important;
}
</style>
<style>
nav navbar-nav navbar-right li a:hover {
text-decoration: none;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li a.SLP-360 {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
height: 48px;
gap: 8px;
padding: 8px 12px !important;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li a.SLP-360 .SLP-360-dropdown-text {
display: flex;
flex-direction: column;
line-height: 14px;
align-items: flex-start;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li a.SLP-360 .SLP-360-dropdown-text .SLP-360-nav-greeting {
font-weight: normal;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100px;
}
</style>
<style>
/* Inserted as part of 17055 - styles already exist in SCSS files elsewhere as part of the control but need to be
included here so they can be manipulated to be either UL or OL as part of either the experiment or the control */
nav {
font-family: var(--default-font-family, 'Arial'), sans-serif;
}
nav ol {
list-style-type: none;
margin: 0;
padding: 0;
}
nav.KEP4853 ol li,
nav.KEP4853 ol li a {
background: transparent;
}
nav ol li {
position: relative;
float: left;
background-color: #699fc4;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
nav ol li ol {
right: auto;
position: absolute;
z-index: 19;
}
nav ol li ol li {
float: none;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li {
border-left: 1px solid #101817;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li > a.no-dropdown:hover {
background-color: #10181f;
color: #fff;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li a {
font-size: 12px;
font-weight: bold;
line-height: 48px;
padding: 0 12px;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li a {
font-size: 12px;
font-weight: bold;
line-height: 48px;
padding: 0 12px;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li.currency ol li a,
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li.account ol li a {
font-weight: normal;
line-height: 24px;
}
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li:hover,
nav.KEP4853 .nav-inner-admin > ol.navbar-right > li.active {
background-color: #fff;
}
nav ol li a {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
display: block;
width: 100%;
padding: 0.5em 0;
text-align: center;
text-decoration: none;
background: #699fc4;
white-space: nowrap;
}
nav.KEP4853 .nav-inner-admin > .navbar-right > li a svg.telephone-icon {
margin-right: 5px;
vertical-align: sub;
width: 16px;
}
ol .dropdown-link .new-dropdown-menu {
display: none;
overflow: hidden !important;
}
ol .dropdown-link:hover .new-dropdown-menu,
ol .dropdown-link:active .new-dropdown-menu {
display: block !important;
}
nav.KEP4853 .dropdown-menu ol.support-images {
position: absolute;
top: 36px;
width: calc(100% - 72px);
margin-top: 0;
}
ol.support-images .image-container {
height: 100px;
display: inline-block;
margin-bottom: 6px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
nav.KEP4853 .dropdown-menu ol {
position: static;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 112px;
}
nav.KEP4853 .dropdown-menu ol li {
width: 31%;
max-width: 313px;
display: inline-block;
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
nav.KEP4853 .dropdown-menu ol li a {
border: none !important;
font-size: 12px;
font-weight: bold;
line-height: 20px;
min-height: 36px;
padding: 8px 0;
text-align: left;
color: #22313f;
}
@media (max-width: 1024px) {
nav.KEP4853 .dropdown-link:hover .dropdown-menu ol.support-images,
nav.KEP4853 .dropdown-link:active .dropdown-menu ol.support-images {
top: 24px;
width: calc(100% - 48px);
}
}
nav.KEP4853 .nav-inner-admin .dropdown-link.account:hover .dropdown-toggle,
nav.KEP4853 .nav-inner-admin .dropdown-link.account.active .dropdown-toggle,
nav.KEP4853 .nav-inner-admin .dropdown-link.currency:hover .dropdown-toggle,
nav.KEP4853 .nav-inner-admin .dropdown-link.currency.active .dropdown-toggle {
color: #22313f;
background: transparent;
}
nav.KEP4853 .nav-inner-admin .dropdown-link.currency:hover .dropdown-toggle.chevron svg path,
nav.KEP4853 .nav-inner-admin .dropdown-link.currency.active .dropdown-toggle.chevron svg path {
fill: #22313f;
}
nav.KEP4853 .nav-inner-admin .dropdown-link.is-research-session:hover .dropdown-toggle,
nav.KEP4853 .nav-inner-admin .dropdown-link.is-research-session.active .dropdown-toggle {
color: #000000;
background: transparent;
}
nav.KEP4853 .nav-inner-admin .dropdown-link.is-research-session ol {
width: 500px;
}
</style>
<style>
.cookie_notification {
width: 100%;
background-color: #e3f3fd;
height: 36px;
}
.cookie_notification p {
float: left;
width: calc(100% - 46px);
text-align: center;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 2.57;
letter-spacing: normal;
color: #3c6f99;
margin-bottom: 0;
}
.cookie_notification a {
color: #3c6f99;
}
.cookie_notification span {
float: right;
width: 24px;
height: 24px;
margin: 6px 18px 6px 0;
cursor: pointer;
}
.cookie_notification .model-close-icon-outline {
fill: #3c6f99;
}
</style>
<script>
$(function () {
$('.cookie-close-js').click(function () {
$('.cookie-notification-js').css('display', 'none');
});
});
</script>
<nav class="navbar KEP4853 ">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="nav-inner-admin">
<div class="nav navbar-nav navbar-left" >
<a id="logo" href="/">
<img class="logo-small-screen"
src="/images/sykes/sykes-short-logo-white.svg"
alt="Sykes Cottages Logo"
/>
<img class="logo-big-screen"
src="/images/sykes/sykes-primary-logo-white.svg"
alt="Sykes Cottages Logo"
/>
</a>
</div>
<ol class="nav navbar-nav navbar-right">
<li id="nav-lyc" class="dropdown-link lyp">
<a
href="/letyourcottage/"
class="nav-icon-lyp dropdown-toggle chevron"
data-toggle="dropdown" >
<svg height="16" width="16" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-sykes-logo-circle"></use>
</svg>
<span class="lyp-nav-text">Let Your Property</span>
<svg width="8" height="10" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-chevron-down"></use>
</svg>
</a>
<ol class="dropdown-menu wy97 wy101">
<li>
<a href="/letyourcottage" class="nav-icon-lyp">
<svg height="14" width="14" fill="currentColor" >
<use xlink:href="/images/icons/_common-sprite.svg#sprite-check-circle"></use>
</svg>
<span class="lyp-nav-text">Get started today</span>
</a>
</li>
<li>
<a href="/letyourcottage/#18983-calculator" class="nav-icon-lyp">
<svg height="14" width="14" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-calculator"></use>
</svg>
<span class="lyp-nav-text">Earnings calculator</span>
</a>
</li>
<li>
<a href="/letyourcottage/advice/holiday-homes-for-sale" class="nav-icon-lyp">
<svg height="14" width="14" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-house-heart"></use>
</svg>
<span class="lyp-nav-text">Holiday homes for sale</span>
</a>
</li>
<li>
<a href="/letyourcottage/advice/holiday-let-mortgages" class="nav-icon-lyp">
<img alt="Mortgage Comparison" src="/images/icons-svg/mortgage-comparison-icon.svg">
<span class="lyp-nav-text">Holiday let mortgage comparison</span>
</a>
</li>
<li>
<a href="/letyourcottage/advice" class="nav-icon-lyp">
<svg height="14" width="14" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-info-circle"></use>
</svg>
<span class="lyp-nav-text">Explore guides & resources</span>
</a>
</li>
</ol>
</li>
<li class="no-dropdown" >
<a id="contactus" href="/support-hub/" class="no-dropdown"
data-posthog-event='{"event":"button_click","data":{"page_path":"https:\/\/www.sykescottages.co.uk\/cottage\/Lake-District-Yorkshire-Dales-South-Garsdale\/Roger-Pot-1131260.html","element_id":"contactus","ahref":"\/support-hub\/"}}'
>
Contact Us
</a>
</li>
<li class="dropdown-link currency" >
<a rel="nofollow" class="dropdown-toggle chevron" data-toggle="dropdown" href="#">
GBP £ <svg width="8" height="10" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-chevron-down"></use>
</svg>
</a>
<ol class="dropdown-menu">
<li><a rel="nofollow" href="?¤cy=GBP">GBP £</a></li>
<li><a rel="nofollow" href="?¤cy=EUR">EUR €</a></li>
<li><a rel="nofollow" href="?¤cy=USD">USD $</a></li>
</ol>
</li>
<li class="dropdown-link account">
<a class="dropdown-toggle chevron" data-toggle="dropdown" href="#">
<svg height="12" width="12" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-user-icon"></use>
</svg>
Your Account
<svg width="8" height="10" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-chevron-down"></use>
</svg>
</a>
<ol class="dropdown-menu fly-out-container kep-13857 kep-17250 ">
<li class="login-button">
<a href="/account/login" class="button">Log in</a>
</li>
<li class="register-button">
<a href="/account/register">Create account</a>
</li>
<hr/>
<style>
.dashboard-link svg {
width: 13px;
height: 12px;
}
</style>
<li class="bookings-button bottom-button">
<a href="/account/dashboard" rel="nofollow" class="dashboard-link icon-dashboard">
Dashboard
<svg fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-house-icon"></use>
</svg>
</a>
</li>
<style>
.icon-heart:before {
font-family: 'icon-set';
margin-right: 0.2em;
position: relative;
top: 0.1em;
content: "\e64d";
}
</style>
<li class="favourite-button bottom-button">
<a href="/account/favourites" rel="nofollow" class="icon-star icon-heart">
Saved Properties
<svg height="12" width="13" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-heart-filled"></use>
</svg>
</a>
</li>
<li class="bookings-button bottom-button">
<a href="/account/bookings" rel="nofollow" class="icon-calendar">
Bookings
<svg height="12" width="13" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-calendar-check"></use>
</svg>
</a>
</li>
<li class="bookings-button bottom-button">
<a href="/account/helpcentre/bookings" rel="nofollow" class="icon-email">
Help Centre
<svg height="12" width="13" viewBox="0 0 22 24" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-email-icon"></use>
</svg>
</a>
</li>
<li class="details-button bottom-button">
<a href="/account/details" rel="nofollow" class="icon-users">
My Details
<svg height="12" width="13" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-user-icon"></use>
</svg>
</a>
</li>
<style>
.search-preferences-link svg {
width: 13px;
height: 12px;
}
</style>
<li class="bottom-button">
<a
href="/account/search-preferences"
rel="nofollow"
class="search-preferences-link icon-magnifying-glass"
>
Search Preferences
<svg height="12" width="13" fill="currentColor">
<use xlink:href="/images/icons/_common-sprite.svg#sprite-search-icon"></use>
</svg>
</a>
</li>
</ol>
</div>
<div class="nav-inner-shop">
<div class="nav-inner-bottom-container">
<style>
.prop-search-outer-div {
display: none;
width: auto;
max-height: 80px;
margin-left: -1px;
}
.prop-search-div {
margin: 0 auto;
max-width: 87.500em;
width: 100%;
}
.prop-search-div button {
font-size: 17px;
margin: 0;
position: relative;
background-color:rgba(0,0,0,0);
padding: 5px 0;
}
.prop-search-div button:before {
content: "\e611";
font-family: 'icon-set';
vertical-align: middle;
color: #aaaaaa;
}
.prop-search-div form fieldset input {
background-color:rgba(0,0,0,0);
border-radius: 0;
font-size: 0.875em;
margin: 0;
width: 200px;
padding: 0.6em;
-webkit-appearance: none;
padding-right: 0;
padding-left: 0;
}
#header-prop-search {
font-family: Arial, sans-serif;
font-size: 12px;
font-weight: normal;
font-style: normal;
font-stretch: normal;
line-height: 2;
letter-spacing: normal;
color: #666666;
border: 2px solid rgba(0,0,0,0);
border-left: 0px;
border-right: 0px;
border-top: 0px;
height: 44px;
padding-top: 14px;
}