-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_text.txt
3295 lines (3003 loc) · 300 KB
/
html_text.txt
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 class="scroll-smooth" lang="en">
<head>
<title>RStudio Desktop - Posit</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=yes, initial-scale=1.0, maximum-scale='2.0', minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"><script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"594355998",accountID:"3563292",trustKey:"66686",xpid:"VwMBUlRaChAFVlVRDgYBU1w=",licenseKey:"NRJS-a11b2dc87a4a601c948",applicationID:"524397658"};;/*! For license information please see nr-loader-spa-1.267.0.min.js.LICENSE.txt */
(()=>{var e,t,r={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 a in o)if(void 0!==e[a])try{if(null===e[a]){r[a]=null;continue}Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.R)(1,e)}return r}catch(e){(0,n.R)(2,e)}}},2555:(e,t,r)=>{"use strict";r.d(t,{Vp:()=>c,fn:()=>s,x1:()=>u});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},a={};function s(e){try{const t=c(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}function c(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function u(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,i.a)(t,o);const r=(0,n.nY)(e);r&&(r.info=a[e])}},9417:(e,t,r)=>{"use strict";r.d(t,{D0:()=>h,gD:()=>p,xN:()=>g});var n=r(993);const i=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var o=r(2614),a=r(944),s=r(384),c=r(8122);const u="[data-nr-mask]",d=()=>{const e={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,harvestTimeSeconds:10,autoStart:!0},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},feature_flags:[],generic_events:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},harvest:{tooManyRequestsDelay:60},jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},logging:{enabled:!0,harvestTimeSeconds:10,autoStart:!0,level:n.p_.INFO},metrics:{enabled:!0,autoStart:!0},obfuscate:void 0,page_action:{enabled:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},privacy:{cookies_enabled:!0},proxy:{assets:void 0,beacon:void 0},session:{expiresMs:o.wk,inactiveMs:o.BB},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,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){i(t)?e.mask_selector="".concat(t,",").concat(u):""===t||null===t?e.mask_selector=u:(0,a.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){i(t)?e.block_selector+=",".concat(t):""!==t&&(0,a.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,a.R)(7,t)}},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},soft_navigations:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},ssl:void 0}},l={},f="All configuration objects require an agent identifier!";function h(e){if(!e)throw new Error(f);if(!l[e])throw new Error("Configuration for ".concat(e," was never set"));return l[e]}function g(e,t){if(!e)throw new Error(f);l[e]=(0,c.a)(t,d());const r=(0,s.nY)(e);r&&(r.init=l[e])}function p(e,t){if(!e)throw new Error(f);var r=h(e);if(r){for(var n=t.split("."),i=0;i<n.length-1;i++)if("object"!=typeof(r=r[n[i]]))return;r=r[n[n.length-1]]}return r}},5603:(e,t,r)=>{"use strict";r.d(t,{a:()=>c,o:()=>s});var n=r(384),i=r(8122);const o={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},a={};function s(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!a[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");a[e]=(0,i.a)(t,o);const r=(0,n.nY)(e);r&&(r.loader_config=a[e])}},3371:(e,t,r)=>{"use strict";r.d(t,{V:()=>f,f:()=>l});var n=r(8122),i=r(384),o=r(6154),a=r(9324);let s=0;const c={buildEnv:a.F3,distMethod:a.Xs,version:a.xv,originTime:o.WN},u={customTransaction:void 0,disabled:!1,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,onerror:void 0,origin:""+o.gm.location,ptid:void 0,releaseIds:{},appMetadata:{},session:void 0,denyList:void 0,timeKeeper:void 0,obfuscator:void 0},d={};function l(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!d[e])throw new Error("Runtime for ".concat(e," was never set"));return d[e]}function f(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");d[e]={...(0,n.a)(t,u),...c},Object.hasOwnProperty.call(d[e],"harvestCount")||Object.defineProperty(d[e],"harvestCount",{get:()=>++s});const r=(0,i.nY)(e);r&&(r.runtime=d[e])}},9324:(e,t,r)=>{"use strict";r.d(t,{F3:()=>i,Xs:()=>o,Yq:()=>a,xv:()=>n});const n="1.267.0",i="PROD",o="CDN",a="2.0.0-alpha.12"},6154:(e,t,r)=>{"use strict";r.d(t,{A4:()=>s,OF:()=>d,RI:()=>i,Vr:()=>h,WN:()=>g,bv:()=>o,gm:()=>a,lR:()=>f,m:()=>u,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),a=i?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),s="complete"===a?.document?.readyState,c=Boolean("hidden"===a?.document?.visibilityState),u=""+a?.location,d=/iPad|iPhone|iPod/.test(a.navigator?.userAgent),l=d&&"undefined"==typeof SharedWorker,f=(()=>{const e=a.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),h=!!a.navigator?.sendBeacon,g=Date.now()-(0,n.t)()},4777:(e,t,r)=>{"use strict";r.d(t,{J:()=>o});var n=r(944);const i={agentIdentifier:"",ee:void 0};class o{constructor(e){try{if("object"!=typeof e)return(0,n.R)(8);this.sharedContext={},Object.assign(this.sharedContext,i),Object.entries(e).forEach((([e,t])=>{Object.keys(i).includes(e)&&(this.sharedContext[e]=t)}))}catch(e){(0,n.R)(9,e)}}}},7295:(e,t,r)=>{"use strict";r.d(t,{Xv:()=>a,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(s(r.hostname,e.hostname)&&c(r.pathname,e.pathname))return!1}return!0}function o(e){return void 0===e.hostname}function a(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,a;i>0?(o=r.substring(0,i),a=r.substring(i)):(o=r,a="");let[s]=o.split(":");n.push({hostname:s,pathname:a})}}function s(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}},1687:(e,t,r)=>{"use strict";r.d(t,{Ak:()=>c,Ze:()=>l,x3:()=>u});var n=r(7836),i=r(3606),o=r(860),a=r(2646);const s={};function c(e,t){const r={staged:!1,priority:o.P[t]||0};d(e),s[e].get(t)||s[e].set(t,r)}function u(e,t){e&&s[e]&&(s[e].get(t)&&s[e].delete(t),h(e,t,!1),s[e].size&&f(e))}function d(e){if(!e)throw new Error("agentIdentifier required");s[e]||(s[e]=new Map)}function l(e="",t="feature",r=!1){if(d(e),!e||!s[e].get(t)||r)return h(e,t);s[e].get(t).staged=!0,f(e)}function f(e){const t=Array.from(s[e]);t.every((([e,t])=>t.staged))&&(t.sort(((e,t)=>e[1].priority-t[1].priority)),t.forEach((([t])=>{s[e].delete(t),h(e,t)})))}function h(e,t,r=!0){const o=e?n.ee.get(e):n.ee,s=i.i.handlers;if(!o.aborted&&o.backlog&&s){if(r){const e=o.backlog[t],r=s[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])}))}))}}o.isolatedBacklog||delete s[t],o.backlog[t]=null,o.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)}}))}},7836:(e,t,r)=>{"use strict";r.d(t,{P:()=>c,ee:()=>u});var n=r(384),i=r(8990),o=r(3371),a=r(2646),s=r(5607);const c="nr@context:".concat(s.W),u=function e(t,r){var n={},s={},d={},l=!1;try{l=16===r.length&&(0,o.f)(r).isolatedBacklog}catch(e){}var f={on:g,addEventListener:g,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(u.aborted&&!i)return;t&&o&&t.emit(e,r,n);for(var a=h(n),c=p(e),d=c.length,l=0;l<d;l++)c[l].apply(a,r);var g=v()[s[e]];g&&g.push([f,e,r,a]);return a},get:m,listeners:p,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 a.y?e:e?(0,i.I)(e,c,(()=>new a.y(c))):new a.y(c)}function g(e,t){n[e]=p(e).concat(t)}function p(e){return n[e]||[]}function m(t){return d[t]=d[t]||e(f,t)}function v(){return f.backlog}}(void 0,"globalEE"),d=(0,n.Zm)();d.ee||(d.ee=u)},2646:(e,t,r)=>{"use strict";r.d(t,{y:()=>n});class n{constructor(e){this.contextId=e}}},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))}},3606:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(9908);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.d,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.d);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3878:(e,t,r)=>{"use strict";r.d(t,{DD:()=>c,jT:()=>a,sp:()=>s});var n=r(6154);let i=!1,o=!1;try{const e={get passive(){return i=!0,!1},get signal(){return o=!0,!1}};n.gm.addEventListener("test",null,e),n.gm.removeEventListener("test",null,e)}catch(e){}function a(e,t){return i||o?{capture:!!e,passive:i,signal:t}:!!e}function s(e,t,r=!1,n){window.addEventListener(e,t,a(r,n))}function c(e,t,r=!1,n){document.addEventListener(e,t,a(r,n))}},5607:(e,t,r)=>{"use strict";r.d(t,{W:()=>n});const n=(0,r(9566).bz)()},9566:(e,t,r)=>{"use strict";r.d(t,{LA:()=>s,ZF:()=>c,bz:()=>a,el:()=>u});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 a(){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 s(e){const t=n.gm?.crypto||n.gm?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const a=[];for(var s=0;s<e;s++)a.push(o(r,i++).toString(16));return a.join("")}function c(){return s(16)}function u(){return s(32)}},2614:(e,t,r)=>{"use strict";r.d(t,{BB:()=>a,H3:()=>n,g:()=>u,iL:()=>c,tS:()=>s,uh:()=>i,wk:()=>o});const n="NRBA",i="SESSION",o=144e5,a=18e5,s={STARTED:"session-started",PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},c={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},u={OFF:0,FULL:1,ERROR:2}},1863:(e,t,r)=>{"use strict";function n(){return Math.floor(performance.now())}r.d(t,{t:()=>n})},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{}}}},944:(e,t,r)=>{"use strict";function n(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)}r.d(t,{R:()=>n})},5284:(e,t,r)=>{"use strict";r.d(t,{t:()=>c,B:()=>s});var n=r(7836),i=r(6154);const o="newrelic";const a=new Set,s={};function c(e,t){const r=n.ee.get(t);s[t]??={},e&&"object"==typeof e&&(a.has(t)||(r.emit("rumresp",[e]),s[t]=e,a.add(t),function(e={}){try{i.gm.dispatchEvent(new CustomEvent(o,{detail:e}))}catch(e){}}({loaded:!0})))}},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}},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})},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""}}},5289:(e,t,r)=>{"use strict";r.d(t,{GG:()=>o,sB:()=>a});var n=r(3878);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.sp)("load",e,t)}function a(e){if(i())return e();(0,n.DD)("DOMContentLoaded",e)}},384:(e,t,r)=>{"use strict";r.d(t,{NT:()=>o,US:()=>d,Zm:()=>a,bQ:()=>c,dV:()=>s,nY:()=>u,pV:()=>l});var n=r(6154),i=r(1863);const o={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 s(){let e=a();return e.o||(e.o={ST:n.gm.setTimeout,SI:n.gm.setImmediate,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}),e}function c(e,t){let r=a();r.initializedAgents??={},t.initializedAt={ms:(0,i.t)(),date:new Date},r.initializedAgents[e]=t}function u(e){let t=a();return t.initializedAgents?.[e]}function d(e,t){a()[e]=t}function l(){return function(){let e=a();const t=e.info||{};e.info={beacon:o.beacon,errorBeacon:o.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),s(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},2843:(e,t,r)=>{"use strict";r.d(t,{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)}},8139:(e,t,r)=>{"use strict";r.d(t,{u:()=>f});var n=r(7836),i=r(3434),o=r(8990),a=r(6154);const s={},c=a.gm.XMLHttpRequest,u="addEventListener",d="removeEventListener",l="nr@wrapped:".concat(n.P);function f(e){var t=function(e){return(e||n.ee).get("events")}(e);if(s[t.debugId]++)return t;s[t.debugId]=1;var r=(0,i.YM)(t,!0);function f(e){r.inPlace(e,[u,d],"-",g)}function g(e,t){return e[1]}return"getPrototypeOf"in Object&&(a.RI&&h(document,f),h(a.gm,f),h(c.prototype,f)),t.on(u+"-start",(function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){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(d+"-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,u);)n=Object.getPrototypeOf(n);n&&t(n,...r)}},3434:(e,t,r)=>{"use strict";r.d(t,{Jt:()=>o,YM:()=>c});var n=r(7836),i=r(5607);const o="nr@original:".concat(i.W);var a=Object.prototype.hasOwnProperty,s=!1;function c(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");const a="-"===n.charAt(0);for(let s=0;s<t.length;s++){const c=t[s],u=e[c];d(u)||(e[c]=r(u,a?c+n:n,i,c,o))}},r.flag=o,r;function r(t,r,n,s,c){return d(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,d,l;try{a=this,o=[...arguments],d="function"==typeof n?n(o,a):n||{}}catch(t){u([t,"",[o,a,s],d],e)}i(r+"start",[o,a,s],d,c);try{return l=t.apply(a,o)}catch(e){throw i(r+"err",[o,a,e],d,c),e}finally{i(r+"end",[o,a,l],d,c)}}}function i(r,n,i,o){if(!s||t){var a=s;s=!0;try{e.emit(r,n,i,t,o)}catch(t){u([t,r,n,i],e)}s=a}}}function u(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function d(e){return!(e&&"function"==typeof e&&e.apply&&!e[o])}},9300:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.ajax},3333:(e,t,r)=>{"use strict";r.d(t,{TZ:()=>n});const n=r(860).K.genericEvents},6774:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.jserrors},993:(e,t,r)=>{"use strict";r.d(t,{ET:()=>o,TZ:()=>a,p_:()=>i});var n=r(860);const i={ERROR:"ERROR",WARN:"WARN",INFO:"INFO",DEBUG:"DEBUG",TRACE:"TRACE"},o="log",a=n.K.logging},3785:(e,t,r)=>{"use strict";r.d(t,{R:()=>c,b:()=>u});var n=r(9908),i=r(1863),o=r(860),a=r(3969),s=r(993);function c(e,t,r={},c=s.p_.INFO){(0,n.p)(a.xV,["API/logging/".concat(c.toLowerCase(),"/called")],void 0,o.K.metrics,e),(0,n.p)(s.ET,[(0,i.t)(),t,r,c],void 0,o.K.logging,e)}function u(e){return"string"==typeof e&&Object.values(s.p_).some((t=>t===e.toUpperCase().trim()))}},3969:(e,t,r)=>{"use strict";r.d(t,{TZ:()=>n,XG:()=>s,rs:()=>i,xV:()=>a,z_:()=>o});const n=r(860).K.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},6630:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.pageViewEvent},782:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.pageViewTiming},6344:(e,t,r)=>{"use strict";r.d(t,{BB:()=>d,G4:()=>o,Qb:()=>l,TZ:()=>i,Ug:()=>a,_s:()=>s,bc:()=>u,yP:()=>c});var n=r(2614);const i=r(860).K.sessionReplay,o={RECORD:"recordReplay",PAUSE:"pauseReplay",REPLAY_RUNNING:"replayRunning",ERROR_DURING_REPLAY:"errorDuringReplay"},a=.12,s={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},u={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"}},d=5e3,l={API:"api"}},5270:(e,t,r)=>{"use strict";r.d(t,{Aw:()=>c,CT:()=>u,SR:()=>s});var n=r(384),i=r(9417),o=r(7767),a=r(6154);function s(e){return!!(0,n.dV)().o.MO&&(0,o.V)(e)&&!0===(0,i.gD)(e,"session_trace.enabled")}function c(e){return!0===(0,i.gD)(e,"session_replay.preload")&&s(e)}function u(e,t){const r=t.correctAbsoluteTimestamp(e);return{originalTimestamp:e,correctedTimestamp:r,timestampDiff:e-r,originTime:a.WN,correctedOriginTime:t.correctedOriginTime,originTimeDiff:Math.floor(a.WN-t.correctedOriginTime)}}},3738:(e,t,r)=>{"use strict";r.d(t,{He:()=>i,Kp:()=>s,Lc:()=>u,Rz:()=>d,TZ:()=>n,bD:()=>o,d3:()=>a,jx:()=>l,uP:()=>c});const n=r(860).K.sessionTrace,i="bstResource",o="resource",a="-start",s="-end",c="fn"+a,u="fn"+s,d="pushState",l=1e3},3962:(e,t,r)=>{"use strict";r.d(t,{AM:()=>o,O2:()=>s,Qu:()=>c,TZ:()=>a,ih:()=>u,tC:()=>i});var n=r(860);const i=["click","keydown","submit"],o="api",a=n.K.softNav,s={INITIAL_PAGE_LOAD:"",ROUTE_CHANGE:1,UNSPECIFIED:2},c={INTERACTION:1,AJAX:2,CUSTOM_END:3,CUSTOM_TRACER:4},u={IP:"in progress",FIN:"finished",CAN:"cancelled"}},7378:(e,t,r)=>{"use strict";r.d(t,{$p:()=>R,BR:()=>b,Kp:()=>x,L3:()=>y,Lc:()=>c,NC:()=>o,SG:()=>d,TZ:()=>i,U6:()=>g,UT:()=>m,d3:()=>w,dT:()=>f,e5:()=>A,gx:()=>v,l9:()=>l,oW:()=>h,op:()=>p,rw:()=>u,tH:()=>E,uP:()=>s,wW:()=>T,xq:()=>a});var n=r(384);const i=r(860).K.spa,o=["click","submit","keypress","keydown","keyup","change"],a=999,s="fn-start",c="fn-end",u="cb-start",d="api-ixn-",l="remaining",f="interaction",h="spaNode",g="jsonpNode",p="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,A="jsTime",E="fetch"},4234:(e,t,r)=>{"use strict";r.d(t,{W:()=>i});var n=r(7836);class i{constructor(e,t,r){this.agentIdentifier=e,this.aggregator=t,this.ee=n.ee.get(e),this.featureName=r,this.blocked=!1}}},7767:(e,t,r)=>{"use strict";r.d(t,{V:()=>o});var n=r(9417),i=r(6154);const o=e=>i.RI&&!0===(0,n.gD)(e,"privacy.cookies_enabled")},425:(e,t,r)=>{"use strict";r.d(t,{j:()=>j});var n=r(860),i=r(2555),o=r(3371),a=r(9908),s=r(7836),c=r(1687),u=r(5289),d=r(6154),l=r(944),f=r(3969),h=r(384),g=r(6344);const p=["setErrorHandler","finished","addToTrace","addRelease","addPageAction","setCurrentRouteName","setPageViewName","setCustomAttribute","interaction","noticeError","setUserId","setApplicationVersion","start",g.G4.RECORD,g.G4.PAUSE,"log","wrapLogger"],m=["setErrorHandler","finished","addToTrace","addRelease"];var v=r(1863),b=r(2614),y=r(993),w=r(3785),x=r(2646),R=r(3434);function T(e,t,r,n){if("object"!=typeof t||!t||"string"!=typeof r||!r||"function"!=typeof t[r])return(0,l.R)(29);const i=function(e){return(e||s.ee).get("logger")}(e),o=(0,R.YM)(i),a=new x.y(s.P);return a.level=n.level,a.customAttributes=n.customAttributes,o.inPlace(t,[r],"wrap-logger-",a),i}function A(){const e=(0,h.pV)();p.forEach((t=>{e[t]=(...r)=>function(t,...r){let n=[];return Object.values(e.initializedAgents).forEach((e=>{e&&e.api?e.exposed&&e.api[t]&&n.push(e.api[t](...r)):(0,l.R)(38,t)})),n.length>1?n:n[0]}(t,...r)}))}const E={};var S=r(9417),O=r(5603),N=r(5284);const I=e=>{const t=e.startsWith("http");e+="/",r.p=t?e:"https://"+e};let _=!1;function j(e,t={},p,x){let{init:R,info:j,loader_config:P,runtime:C={},exposed:k=!0}=t;C.loaderType=p;const L=(0,h.pV)();j||(R=L.init,j=L.info,P=L.loader_config),(0,S.xN)(e.agentIdentifier,R||{}),(0,O.a)(e.agentIdentifier,P||{}),j.jsAttributes??={},d.bv&&(j.jsAttributes.isWorker=!0),(0,i.x1)(e.agentIdentifier,j);const D=(0,S.D0)(e.agentIdentifier),H=[j.beacon,j.errorBeacon];_||(D.proxy.assets&&(I(D.proxy.assets),H.push(D.proxy.assets)),D.proxy.beacon&&H.push(D.proxy.beacon),A(),(0,h.US)("activatedFeatures",N.B),e.runSoftNavOverSpa&&=!0===D.soft_navigations.enabled&&D.feature_flags.includes("soft_nav")),C.denyList=[...D.ajax.deny_list||[],...D.ajax.block_internal?H:[]],C.ptid=e.agentIdentifier,(0,o.V)(e.agentIdentifier,C),e.ee=s.ee.get(e.agentIdentifier),void 0===e.api&&(e.api=function(e,t,h=!1){t||(0,c.Ak)(e,"api");const p={};var x=s.ee.get(e),R=x.get("tracer");E[e]=b.g.OFF,x.on(g.G4.REPLAY_RUNNING,(t=>{E[e]=t}));var A="api-",S=A+"ixn-";function O(t,r,n,o){const a=(0,i.Vp)(e);return null===r?delete a.jsAttributes[t]:(0,i.x1)(e,{...a,jsAttributes:{...a.jsAttributes,[t]:r}}),_(A,n,!0,o||null===r?"session":void 0)(t,r)}function N(){}p.log=function(e,{customAttributes:t={},level:r=y.p_.INFO}={}){(0,a.p)(f.xV,["API/log/called"],void 0,n.K.metrics,x),(0,w.R)(x,e,t,r)},p.wrapLogger=(e,t,{customAttributes:r={},level:i=y.p_.INFO}={})=>{(0,a.p)(f.xV,["API/wrapLogger/called"],void 0,n.K.metrics,x),T(x,e,t,{customAttributes:r,level:i})},m.forEach((e=>{p[e]=_(A,e,!0,"api")})),p.addPageAction=_(A,"addPageAction",!0,n.K.genericEvents),p.setPageViewName=function(t,r){if("string"==typeof t)return"/"!==t.charAt(0)&&(t="/"+t),(0,o.f)(e).customTransaction=(r||"http://custom.transaction")+t,_(A,"setPageViewName",!0)()},p.setCustomAttribute=function(e,t,r=!1){if("string"==typeof e){if(["string","number","boolean"].includes(typeof t)||null===t)return O(e,t,"setCustomAttribute",r);(0,l.R)(40,typeof t)}else(0,l.R)(39,typeof e)},p.setUserId=function(e){if("string"==typeof e||null===e)return O("enduser.id",e,"setUserId",!0);(0,l.R)(41,typeof e)},p.setApplicationVersion=function(e){if("string"==typeof e||null===e)return O("application.version",e,"setApplicationVersion",!1);(0,l.R)(42,typeof e)},p.start=()=>{try{(0,a.p)(f.xV,["API/start/called"],void 0,n.K.metrics,x),x.emit("manual-start-all")}catch(e){(0,l.R)(23,e)}},p[g.G4.RECORD]=function(){(0,a.p)(f.xV,["API/recordReplay/called"],void 0,n.K.metrics,x),(0,a.p)(g.G4.RECORD,[],void 0,n.K.sessionReplay,x)},p[g.G4.PAUSE]=function(){(0,a.p)(f.xV,["API/pauseReplay/called"],void 0,n.K.metrics,x),(0,a.p)(g.G4.PAUSE,[],void 0,n.K.sessionReplay,x)},p.interaction=function(e){return(new N).get("object"==typeof e?e:{})};const I=N.prototype={createTracer:function(e,t){var r={},i=this,o="function"==typeof t;return(0,a.p)(f.xV,["API/createTracer/called"],void 0,n.K.metrics,x),h||(0,a.p)(S+"tracer",[(0,v.t)(),e,r],i,n.K.spa,x),function(){if(R.emit((o?"":"no-")+"fn-start",[(0,v.t)(),i,o],r),o)try{return t.apply(this,arguments)}catch(e){const t="string"==typeof e?new Error(e):e;throw R.emit("fn-err",[arguments,this,t],r),t}finally{R.emit("fn-end",[(0,v.t)()],r)}}}};function _(e,t,r,i){return function(){return(0,a.p)(f.xV,["API/"+t+"/called"],void 0,n.K.metrics,x),i&&(0,a.p)(e+t,[(0,v.t)(),...arguments],r?null:this,i,x),r?void 0:this}}function j(){r.e(478).then(r.bind(r,8778)).then((({setAPI:t})=>{t(e),(0,c.Ze)(e,"api")})).catch((e=>{(0,l.R)(27,e),x.abort()}))}return["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach((e=>{I[e]=_(S,e,void 0,h?n.K.softNav:n.K.spa)})),p.setCurrentRouteName=h?_(S,"routeName",void 0,n.K.softNav):_(A,"routeName",!0,n.K.spa),p.noticeError=function(t,r){"string"==typeof t&&(t=new Error(t)),(0,a.p)(f.xV,["API/noticeError/called"],void 0,n.K.metrics,x),(0,a.p)("err",[t,(0,v.t)(),!1,r,!!E[e]],void 0,n.K.jserrors,x)},d.RI?(0,u.GG)((()=>j()),!0):j(),p}(e.agentIdentifier,x,e.runSoftNavOverSpa)),void 0===e.exposed&&(e.exposed=k),_=!0}},8374:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},860:(e,t,r)=>{"use strict";r.d(t,{K:()=>n,P:()=>i});const n={ajax:"ajax",genericEvents:"generic_events",jserrors:"jserrors",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"},i={[n.pageViewEvent]:1,[n.pageViewTiming]:2,[n.metrics]:3,[n.jserrors]:4,[n.spa]:5,[n.ajax]:6,[n.sessionTrace]:7,[n.softNav]:8,[n.sessionReplay]:9,[n.logging]:10,[n.genericEvents]:11}}},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.267.0.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.267.0.PROD:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var l=u[d];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){s=l;break}}if(!s){c=!0;var f={478:"sha512-XKF+PBcSlSiyzkKLdw/E9C47Vd1bfjeXiJB7EaC+HRHBVVlDNUSeK/zW10RlimSSN7csT6ekIWCuI71N/4dwrw==",249:"sha512-t6m+Y+uBhmMdAlmZWCtOYYmDGuAP+uXXp2h9sWe9+C081zNSsIWOaAlie5M86bYfj19tMdEFQcpZSmgTsCGMmg==",212:"sha512-Qo+QuTtoj54DJCfGui+9XeLrUOA5pBgfpe+PKE+TB/b14oFeD03D88vm3Tm8HQEEGvpcigHzfLXrCbMvGOV1lg=="};(s=document.createElement("script")).charset="utf-8",s.timeout=120,i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r,0!==s.src.indexOf(window.location.origin+"/")&&(s.crossOrigin="anonymous"),f[a]&&(s.integrity=f[a])}e[r]=[n];var h=(t,n)=>{s.onerror=s.onload=null,clearTimeout(g);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(n))),t)return t(n)},g=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),c&&document.head.appendChild(s)}},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 a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.267.0.PROD"]=self["webpackChunk:NRBA-1.267.0.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(8374);var e=i(944),t=i(6344),r=i(9566);class n{agentIdentifier;constructor(e=(0,r.LA)(16)){this.agentIdentifier=e}#e(t,...r){if("function"==typeof this.api?.[t])return this.api[t](...r);(0,e.R)(35,t)}addPageAction(e,t){return this.#e("addPageAction",e,t)}setPageViewName(e,t){return this.#e("setPageViewName",e,t)}setCustomAttribute(e,t,r){return this.#e("setCustomAttribute",e,t,r)}noticeError(e,t){return this.#e("noticeError",e,t)}setUserId(e){return this.#e("setUserId",e)}setApplicationVersion(e){return this.#e("setApplicationVersion",e)}setErrorHandler(e){return this.#e("setErrorHandler",e)}finished(e){return this.#e("finished",e)}addRelease(e,t){return this.#e("addRelease",e,t)}start(e){return this.#e("start",e)}recordReplay(){return this.#e(t.G4.RECORD)}pauseReplay(){return this.#e(t.G4.PAUSE)}addToTrace(e){return this.#e("addToTrace",e)}setCurrentRouteName(e){return this.#e("setCurrentRouteName",e)}interaction(){return this.#e("interaction")}log(e,t){return this.#e("log",e,t)}wrapLogger(e,t,r){return this.#e("wrapLogger",e,t,r)}}var o=i(860),a=i(9417);const s=Object.values(o.K);function c(e){const t={};return s.forEach((r=>{t[r]=function(e,t){return!0===(0,a.gD)(t,"".concat(e,".enabled"))}(r,e)})),t}var u=i(425);var d=i(1687),l=i(4234),f=i(5289),h=i(6154),g=i(5270),p=i(7767),m=i(6389);class v extends l.W{constructor(e,t,r,n=!0){super(e,t,r),this.auto=n,this.abortHandler=void 0,this.featAggregate=void 0,this.onAggregateImported=void 0,!1===(0,a.gD)(this.agentIdentifier,"".concat(this.featureName,".autoStart"))&&(this.auto=!1),this.auto?(0,d.Ak)(e,r):this.ee.on("manual-start-all",(0,m.J)((()=>{(0,d.Ak)(this.agentIdentifier,this.featureName),this.auto=!0,this.importAggregator()})))}importAggregator(t={}){if(this.featAggregate||!this.auto)return;let r;this.onAggregateImported=new Promise((e=>{r=e}));const n=async()=>{let n;try{if((0,p.V)(this.agentIdentifier)){const{setupAgentSession:e}=await i.e(478).then(i.bind(i,6526));n=e(this.agentIdentifier)}}catch(t){(0,e.R)(20,t),this.ee.emit("internal-error",[t]),this.featureName===o.K.sessionReplay&&this.abortHandler?.()}try{if(!this.#t(this.featureName,n))return(0,d.Ze)(this.agentIdentifier,this.featureName),void r(!1);const{lazyFeatureLoader:e}=await i.e(478).then(i.bind(i,6103)),{Aggregate:o}=await e(this.featureName,"aggregate");this.featAggregate=new o(this.agentIdentifier,this.aggregator,t),r(!0)}catch(t){(0,e.R)(34,t),this.abortHandler?.(),(0,d.Ze)(this.agentIdentifier,this.featureName,!0),r(!1),this.ee&&this.ee.abort()}};h.RI?(0,f.GG)((()=>n()),!0):n()}#t(e,t){switch(e){case o.K.sessionReplay:return(0,g.SR)(this.agentIdentifier)&&!!t;case o.K.sessionTrace:return!!t;default:return!0}}}var b=i(6630);class y extends v{static featureName=b.T;constructor(e,t,r=!0){super(e,t,b.T,r),this.importAggregator()}}var w=i(4777);class x extends w.J{constructor(e){super(e),this.aggregatedData={}}store(e,t,r,n,i){var o=this.getBucket(e,t,r,i);return o.metrics=function(e,t){t||(t={count:0});return t.count+=1,Object.entries(e||{}).forEach((([e,r])=>{t[e]=R(r,t[e])})),t}(n,o.metrics),o}merge(e,t,r,n,i){var o=this.getBucket(e,t,n,i);if(o.metrics){var a=o.metrics;a.count+=r.count,Object.keys(r||{}).forEach((e=>{if("count"!==e){var t=a[e],n=r[e];n&&!n.c?a[e]=R(n.t,t):a[e]=function(e,t){if(!t)return e;t.c||(t=T(t.t));return t.min=Math.min(e.min,t.min),t.max=Math.max(e.max,t.max),t.t+=e.t,t.sos+=e.sos,t.c+=e.c,t}(n,a[e])}}))}else o.metrics=r}storeMetric(e,t,r,n){var i=this.getBucket(e,t,r);return i.stats=R(n,i.stats),i}getBucket(e,t,r,n){this.aggregatedData[e]||(this.aggregatedData[e]={});var i=this.aggregatedData[e][t];return i||(i=this.aggregatedData[e][t]={params:r||{}},n&&(i.custom=n)),i}get(e,t){return t?this.aggregatedData[e]&&this.aggregatedData[e][t]:this.aggregatedData[e]}take(e){for(var t={},r="",n=!1,i=0;i<e.length;i++)t[r=e[i]]=Object.values(this.aggregatedData[r]||{}),t[r].length&&(n=!0),delete this.aggregatedData[r];return n?t:null}}function R(e,t){return null==e?function(e){e?e.c++:e={c:1};return e}(t):t?(t.c||(t=T(t.t)),t.c+=1,t.t+=e,t.sos+=e*e,e>t.max&&(t.max=e),e<t.min&&(t.min=e),t):{t:e}}function T(e){return{t:e,min:e,max:e,sos:e*e,c:1}}var A=i(384);var E=i(9908),S=i(2843),O=i(3878),N=i(782),I=i(1863);class _ extends v{static featureName=N.T;constructor(e,t,r=!0){super(e,t,N.T,r),h.RI&&((0,S.u)((()=>(0,E.p)("docHidden",[(0,I.t)()],void 0,N.T,this.ee)),!0),(0,O.sp)("pagehide",(()=>(0,E.p)("winPagehide",[(0,I.t)()],void 0,N.T,this.ee))),this.importAggregator())}}var j=i(3969);class P extends v{static featureName=j.TZ;constructor(e,t,r=!0){super(e,t,j.TZ,r),this.importAggregator()}}var C=i(6774),k=i(3304);class L{constructor(e,t,r,n,i){this.name="UncaughtError",this.message="string"==typeof e?e:(0,k.A)(e),this.sourceURL=t,this.line=r,this.column=n,this.__newrelic=i}}function D(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)}function H(e){let t="Unhandled Promise Rejection";if(K(e?.reason))try{return e.reason.message=t+": "+e.reason.message,D(e.reason)}catch(t){return D(e.reason)}if(void 0===e.reason)return D(t);const r=D(e.reason);return r.message=t+": "+r?.message,r}function M(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);return t.name=SyntaxError.name,t}return K(e.error)?e.error:D(e)}function K(e){return e instanceof Error&&!!e.stack}class U extends v{static featureName=C.T;#r=!1;constructor(e,r,n=!0){super(e,r,C.T,n);try{this.removeOnAbort=new AbortController}catch(e){}this.ee.on("internal-error",(e=>{this.abortHandler&&(0,E.p)("ierr",[D(e),(0,I.t)(),!0,{},this.#r],void 0,this.featureName,this.ee)})),this.ee.on(t.G4.REPLAY_RUNNING,(e=>{this.#r=e})),h.gm.addEventListener("unhandledrejection",(e=>{this.abortHandler&&(0,E.p)("err",[H(e),(0,I.t)(),!1,{unhandledPromiseRejection:1},this.#r],void 0,this.featureName,this.ee)}),(0,O.jT)(!1,this.removeOnAbort?.signal)),h.gm.addEventListener("error",(e=>{this.abortHandler&&(0,E.p)("err",[M(e),(0,I.t)(),!1,{},this.#r],void 0,this.featureName,this.ee)}),(0,O.jT)(!1,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var V=i(5603),G=i(8990);let B=1;const F="nr@id";function W(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===h.gm?0:(0,G.I)(e,F,(function(){return B++}))}function z(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,k.A)(e).length}catch(e){return}}}var Z=i(8139),q=i(7836),Y=i(3434);const X={},J=["open","send"];function Q(t){var r=t||q.ee;const n=function(e){return(e||q.ee).get("xhr")}(r);if(X[n.debugId]++)return n;X[n.debugId]=1,(0,Z.u)(r);var i=(0,Y.YM)(n),o=h.gm.XMLHttpRequest,a=h.gm.MutationObserver,s=h.gm.Promise,c=h.gm.setInterval,u="readystatechange",d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],l=[],f=h.gm.XMLHttpRequest=function(t){const r=new o(t),a=n.context(r);try{n.emit("new-xhr",[r],a),r.addEventListener(u,(s=a,function(){var e=this;e.readyState>3&&!s.resolved&&(s.resolved=!0,n.emit("xhr-resolved",[],e)),i.inPlace(e,d,"fn-",y)}),(0,O.jT)(!1))}catch(t){(0,e.R)(15,t);try{n.emit("internal-error",[t])}catch(e){}}var s;return r};function g(e,t){i.inPlace(t,["onreadystatechange"],"fn-",y)}if(function(e,t){for(var r in e)t[r]=e[r]}(o,f),f.prototype=o.prototype,i.inPlace(f.prototype,J,"-xhr-",y),n.on("send-xhr-start",(function(e,t){g(e,t),function(e){l.push(e),a&&(p?p.then(b):c?c(b):(m=-m,v.data=m))}(t)})),n.on("open-xhr-start",g),a){var p=s&&s.resolve();if(!c&&!s){var m=1,v=document.createTextNode(m);new a(b).observe(v,{characterData:!0})}}else r.on("fn-end",(function(e){e[0]&&e[0].type===u||b()}));function b(){for(var e=0;e<l.length;e++)g(0,l[e]);l.length&&(l=[])}function y(e,t){return t}return n}var ee="fetch-",te=ee+"body-",re=["arrayBuffer","blob","json","text","formData"],ne=h.gm.Request,ie=h.gm.Response,oe="prototype";const ae={};function se(e){const t=function(e){return(e||q.ee).get("fetch")}(e);if(!(ne&&ie&&h.gm.fetch))return t;if(ae[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[q.P]&&o[q.P].dt&&(e=o[q.P].dt);var a=i.apply(this,r);return t.emit(n+"start",[r,e],a),a.then((function(e){return t.emit(n+"end",[null,e],a),e}),(function(e){throw t.emit(n+"end",[e],a),e}))})}return ae[t.debugId]=1,re.forEach((e=>{r(ne[oe],e,te),r(ie[oe],e,te)})),r(h.gm,"fetch",ee),t.on(ee+"end",(function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(ee+"done",[null,r],n)}else t.emit(ee+"done",[e],n)})),t}var ce=i(7485);class ue{constructor(e){this.agentIdentifier=e}generateTracePayload(e){if(!this.shouldGenerateTrace(e))return null;var t=(0,V.o)(this.agentIdentifier);if(!t)return null;var n=(t.accountID||"").toString()||null,i=(t.agentID||"").toString()||null,o=(t.trustKey||"").toString()||null;if(!n||!i)return null;var a=(0,r.ZF)(),s=(0,r.el)(),c=Date.now(),u={spanId:a,traceId:s,timestamp:c};return(e.sameOrigin||this.isAllowedOrigin(e)&&this.useTraceContextHeadersForCors())&&(u.traceContextParentHeader=this.generateTraceContextParentHeader(a,s),u.traceContextStateHeader=this.generateTraceContextStateHeader(a,c,n,i,o)),(e.sameOrigin&&!this.excludeNewrelicHeader()||!e.sameOrigin&&this.isAllowedOrigin(e)&&this.useNewrelicHeaderForCors())&&(u.newrelicHeader=this.generateTraceHeader(a,s,c,n,i,o)),u}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 h.gm?.btoa))return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(a.d.tk=o),btoa((0,k.A)(a))}shouldGenerateTrace(e){return this.isDtEnabled()&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var t=!1,r={};if((0,a.gD)(this.agentIdentifier,"distributed_tracing")&&(r=(0,a.D0)(this.agentIdentifier).distributed_tracing),e.sameOrigin)t=!0;else if(r.allowed_origins instanceof Array)for(var n=0;n<r.allowed_origins.length;n++){var i=(0,ce.D)(r.allowed_origins[n]);if(e.hostname===i.hostname&&e.protocol===i.protocol&&e.port===i.port){t=!0;break}}return t}isDtEnabled(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.enabled}excludeNewrelicHeader(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.cors_use_tracecontext_headers}}var de=i(9300),le=i(7295),fe=["load","error","abort","timeout"],he=fe.length,ge=(0,A.dV)().o.REQ,pe=(0,A.dV)().o.XHR;class me extends v{static featureName=de.T;constructor(e,t,r=!0){super(e,t,de.T,r),this.dt=new ue(e),this.handler=(e,t,r,n)=>(0,E.p)(e,t,r,n,this.ee);try{const e={xmlhttprequest:"xhr",fetch:"fetch",beacon:"beacon"};h.gm?.performance?.getEntriesByType("resource").forEach((t=>{if(t.initiatorType in e&&0!==t.responseStatus){const r={status:t.responseStatus},n={rxSize:t.transferSize,duration:Math.floor(t.duration),cbTime:0};ve(r,t.name),this.handler("xhr",[r,n,t.startTime,t.responseEnd,e[t.initiatorType]],void 0,o.K.ajax)}}))}catch(e){}se(this.ee),Q(this.ee),function(e,t,r,n){function i(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=x,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},e.addEventListener("load",(function(r){R(t,e)}),(0,O.jT)(!1)),h.lR||e.addEventListener("progress",(function(e){t.lastSize=e.loaded}),(0,O.jT)(!1))}function a(e){this.params={method:e[0]},ve(this,e[1]),this.metrics={}}function s(t,r){var i=(0,V.o)(e);i.xpid&&this.sameOrigin&&r.setRequestHeader("X-NewRelic-ID",i.xpid);var o=n.generateTracePayload(this.parsedOrigin);if(o){var a=!1;o.newrelicHeader&&(r.setRequestHeader("newrelic",o.newrelicHeader),a=!0),o.traceContextParentHeader&&(r.setRequestHeader("traceparent",o.traceContextParentHeader),o.traceContextStateHeader&&r.setRequestHeader("tracestate",o.traceContextStateHeader),a=!0),a&&(this.dt=o)}}function c(e,r){var n=this.metrics,i=e[0],o=this;if(n&&i){var a=z(i);a&&(n.txSize=a)}this.startTime=(0,I.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 s=0;s<he;s++)r.addEventListener(fe[s],this.listener,(0,O.jT)(!1))}function u(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 d(e,t){var r=""+W(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function l(e,t){var r=""+W(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function f(){this.endTime=(0,I.t)()}function g(e,r){r instanceof pe&&"load"===e[0]&&t.emit("xhr-load-added",[e[1],e[2]],r)}function p(e,r){r instanceof pe&&"load"===e[0]&&t.emit("xhr-load-removed",[e[1],e[2]],r)}function m(e,t,r){t instanceof pe&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,I.t)()))}function v(e,r){this.xhrCbStart&&t.emit("xhr-cb-time",[(0,I.t)()-this.xhrCbStart,this.onload,r],r)}function b(e){var t,r=e[1]||{};if("string"==typeof e[0]?0===(t=e[0]).length&&h.RI&&(t=""+h.gm.location.href):e[0]&&e[0].url?t=e[0].url:h.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,ce.D)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var i=n.generateTracePayload(this.parsedOrigin);if(i&&(i.newrelicHeader||i.traceContextParentHeader))if(e[0]&&e[0].headers)s(e[0].headers,i)&&(this.dt=i);else{var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),s(o.headers,i)&&(this.dt=i),e.length>1?e[1]=o:e.push(o)}}function s(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 y(e,t){this.params={},this.metrics={},this.startTime=(0,I.t)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r,n=this.opts||{},i=this.target;"string"==typeof i?r=i:"object"==typeof i&&i instanceof ge?r=i.url:h.gm?.URL&&"object"==typeof i&&i instanceof URL&&(r=i.href),ve(this,r);var o=(""+(i&&i instanceof ge&&i.method||n.method||"GET")).toUpperCase();this.params.method=o,this.body=n.body,this.txSize=z(n.body)||0}function w(e,t){if(this.endTime=(0,I.t)(),this.params||(this.params={}),(0,le.iW)(this.params))return;let n;this.params.status=t?t.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);const i={txSize:this.txSize,rxSize:n,duration:(0,I.t)()-this.startTime};r("xhr",[this.params,i,this.startTime,this.endTime,"fetch"],this,o.K.ajax)}function x(e){const t=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(let t=0;t<he;t++)e.removeEventListener(fe[t],this.listener,!1);t.aborted||(0,le.iW)(t)||(n.duration=(0,I.t)()-this.startTime,this.loadCazptureCalled||4!==e.readyState?null==t.status&&(t.status=0):R(this,e),n.cbTime=this.cbTime,r("xhr",[t,n,this.startTime,this.endTime,"xhr"],this,o.K.ajax))}}function R(e,r){e.params.status=r.status;var n=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?z(e.response):"text"===r||""===r||void 0===r?z(e.responseText):void 0}(r,e.lastSize);if(n&&(e.metrics.rxSize=n),e.sameOrigin){var i=r.getResponseHeader("X-NewRelic-App-Data");i&&((0,E.p)(j.rs,["Ajax/CrossApplicationTracing/Header/Seen"],void 0,o.K.metrics,t),e.params.cat=i.split(", ").pop())}e.loadCaptureCalled=!0}t.on("new-xhr",i),t.on("open-xhr-start",a),t.on("open-xhr-end",s),t.on("send-xhr-start",c),t.on("xhr-cb-time",u),t.on("xhr-load-added",d),t.on("xhr-load-removed",l),t.on("xhr-resolved",f),t.on("addEventListener-end",g),t.on("removeEventListener-end",p),t.on("fn-end",v),t.on("fetch-before-start",b),t.on("fetch-start",y),t.on("fn-start",m),t.on("fetch-done",w)}(e,this.ee,this.handler,this.dt),this.importAggregator()}}function ve(e,t){var r=(0,ce.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 be={},ye=["pushState","replaceState"];function we(e){const t=function(e){return(e||q.ee).get("history")}(e);return!h.RI||be[t.debugId]++||(be[t.debugId]=1,(0,Y.YM)(t).inPlace(window.history,ye,"-")),t}var xe=i(3738);const{He:Re,bD:Te,d3:Ae,Kp:Ee,TZ:Se,Lc:Oe,uP:Ne,Rz:Ie}=xe;class _e extends v{static featureName=Se;constructor(e,t,r=!0){super(e,t,Se,r);if(!(0,p.V)(this.agentIdentifier))return void(0,d.x3)(this.agentIdentifier,this.featureName);const n=this.ee;let i;we(n),this.eventsEE=(0,Z.u)(n),this.eventsEE.on(Ne,(function(e,t){this.bstStart=(0,I.t)()})),this.eventsEE.on(Oe,(function(e,t){(0,E.p)("bst",[e[0],t,this.bstStart,(0,I.t)()],void 0,o.K.sessionTrace,n)})),n.on(Ie+Ae,(function(e){this.time=(0,I.t)(),this.startPath=location.pathname+location.hash})),n.on(Ie+Ee,(function(e){(0,E.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,o.K.sessionTrace,n)}));try{i=new PerformanceObserver((e=>{const t=e.getEntries();(0,E.p)(Re,[t],void 0,o.K.sessionTrace,n)})),i.observe({type:Te,buffered:!0})}catch(e){}this.importAggregator({resourceObserver:i})}}var je=i(2614);class Pe extends v{static featureName=t.TZ;#i;constructor(e,r,n=!0){let i;super(e,r,t.TZ,n),this.replayRunning=!1;try{i=JSON.parse(localStorage.getItem("".concat(je.H3,"_").concat(je.uh)))}catch(e){}(0,g.SR)(e)&&this.ee.on(t.G4.RECORD,(()=>this.#o())),this.#a(i)?(this.#i=i?.sessionReplayMode,this.#s()):this.importAggregator(),this.ee.on("err",(e=>{this.replayRunning&&(this.errorNoticed=!0,(0,E.p)(t.G4.ERROR_DURING_REPLAY,[e],void 0,this.featureName,this.ee))})),this.ee.on(t.G4.REPLAY_RUNNING,(e=>{this.replayRunning=e}))}#a(e){return e&&(e.sessionReplayMode===je.g.FULL||e.sessionReplayMode===je.g.ERROR)||(0,g.Aw)(this.agentIdentifier)}#c=!1;async#s(e){if(!this.#c){this.#c=!0;try{const{Recorder:t}=await Promise.all([i.e(478),i.e(249)]).then(i.bind(i,2496));this.recorder??=new t({mode:this.#i,agentIdentifier:this.agentIdentifier,trigger:e,ee:this.ee}),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording}catch(e){}this.importAggregator({recorder:this.recorder,errorNoticed:this.errorNoticed})}}#o(){this.featAggregate?this.featAggregate.mode!==je.g.FULL&&this.featAggregate.initializeRecording(je.g.FULL,!0):(this.#i=je.g.FULL,this.#s(t.Qb.API),this.recorder&&this.recorder.parent.mode!==je.g.FULL&&(this.recorder.parent.mode=je.g.FULL,this.recorder.stopRecording(),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording))}}var Ce=i(3962);class ke extends v{static featureName=Ce.TZ;constructor(e,t,r=!0){if(super(e,t,Ce.TZ,r),!h.RI||!(0,A.dV)().o.MO)return;const n=we(this.ee),i=(0,Z.u)(this.ee),o=()=>(0,E.p)("newURL",[(0,I.t)(),""+window.location],void 0,this.featureName,this.ee);n.on("pushState-end",o),n.on("replaceState-end",o);try{this.removeOnAbort=new AbortController}catch(e){}(0,O.sp)("popstate",(e=>(0,E.p)("newURL",[e.timeStamp,""+window.location],void 0,this.featureName,this.ee)),!0,this.removeOnAbort?.signal);let a=!1;const s=new((0,A.dV)().o.MO)(((e,t)=>{a||(a=!0,requestAnimationFrame((()=>{(0,E.p)("newDom",[(0,I.t)()],void 0,this.featureName,this.ee),a=!1})))})),c=(0,m.s)((e=>{(0,E.p)("newUIEvent",[e],void 0,this.featureName,this.ee),s.observe(document.body,{attributes:!0,childList:!0,subtree:!0,characterData:!0})}),100,{leading:!0});i.on("fn-start",(([e])=>{Ce.tC.includes(e?.type)&&c(e)}));for(let e of Ce.tC)document.addEventListener(e,(()=>{}));this.abortHandler=function(){this.removeOnAbort?.abort(),s.disconnect(),this.abortHandler=void 0},this.importAggregator({domObserver:s})}}var Le=i(7378);const De={},He=["appendChild","insertBefore","replaceChild"];function Me(e){const t=function(e){return(e||q.ee).get("jsonp")}(e);if(!h.RI||De[t.debugId])return t;De[t.debugId]=!0;var r=(0,Y.YM)(t),n=/[?&](?:callback|cb)=([^&#]+)/,i=/(.*)\.([^.]+)/,o=/^(\w+)(\.|$)(.*)$/;function a(e,t){if(!e)return t;const r=e.match(o),n=r[1];return a(r[3],t[n])}return r.inPlace(Node.prototype,He,"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=(s=e.src,c=s.match(n),c?c[1]:null);var s,c;if(!o)return;var u=function(e){var t=e.match(i);if(t&&t.length>=3)return{key:t[2],parent:a(t[1],window)};return{key:e,parent:window}}(o);if("function"!=typeof u.parent[u.key])return;var d={};function l(){t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,O.jT)(!1)),e.removeEventListener("error",f,(0,O.jT)(!1))}function f(){t.emit("jsonp-error",[],d),t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,O.jT)(!1)),e.removeEventListener("error",f,(0,O.jT)(!1))}r.inPlace(u.parent,[u.key],"cb-",d),e.addEventListener("load",l,(0,O.jT)(!1)),e.addEventListener("error",f,(0,O.jT)(!1)),t.emit("new-jsonp",[e.src],d)}(e[0])})),t}const Ke={};function Ue(e){const t=function(e){return(e||q.ee).get("promise")}(e);if(Ke[t.debugId])return t;Ke[t.debugId]=!0;var r=t.context,n=(0,Y.YM)(t),i=h.gm.Promise;return i&&function(){function e(r){var o=t.context(),a=n(r,"executor-",o,null,!1);const s=Reflect.construct(i,[a],e);return t.context(s).getCtx=function(){return o},s}h.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(a("all"===r),a(!1))}));const o=n.apply(this,arguments);return o;function a(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,a=r(i);a.promise=i,e[0]=n(e[0],"cb-",a,null,!1),e[1]=n(e[1],"cb-",a,null,!1);const s=o.apply(this,e);return a.nextPromise=s,t.emit("propagate",[i,!0],s,!1,!1),s},i.prototype.then[Y.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){this.getCtx&&!r||(this.getCtx=function(){if(e instanceof Promise)var r=t.context(e);return r&&r.getCtx?r.getCtx():this})}))}(),t}const Ve={},Ge="setTimeout",Be="setInterval",Fe="clearTimeout",We="-start",ze=[Ge,"setImmediate",Be,Fe,"clearImmediate"];function Ze(e){const t=function(e){return(e||q.ee).get("timer")}(e);if(Ve[t.debugId]++)return t;Ve[t.debugId]=1;var r=(0,Y.YM)(t);return r.inPlace(h.gm,ze.slice(0,2),Ge+"-"),r.inPlace(h.gm,ze.slice(2,3),Be+"-"),r.inPlace(h.gm,ze.slice(3),Fe+"-"),t.on(Be+We,(function(e,t,n){e[0]=r(e[0],"fn-",null,n)})),t.on(Ge+We,(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 qe={};function Ye(e){const t=function(e){return(e||q.ee).get("mutation")}(e);if(!h.RI||qe[t.debugId])return t;qe[t.debugId]=!0;var r=(0,Y.YM)(t),n=h.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:Xe,d3:Je,Kp:Qe,$p:$e,wW:et,e5:tt,tH:rt,uP:nt,rw:it,Lc:ot}=Le;class at extends v{static featureName=Xe;constructor(e,t,r=!0){if(super(e,t,Xe,r),!h.RI)return;try{this.removeOnAbort=new AbortController}catch(e){}let n,i=0;const o=this.ee.get("tracer"),a=Me(this.ee),s=Ue(this.ee),c=Ze(this.ee),u=Q(this.ee),d=this.ee.get("events"),l=se(this.ee),f=we(this.ee),g=Ye(this.ee);function p(e,t){f.emit("newURL",[""+window.location,t])}function m(){i++,n=window.location.hash,this[nt]=(0,I.t)()}function v(){i--,window.location.hash!==n&&p(0,!0);var e=(0,I.t)();this[tt]=~~this[tt]+e-this[nt],this[ot]=e}function b(e,t){e.on(t,(function(){this[t]=(0,I.t)()}))}this.ee.on(nt,m),s.on(it,m),a.on(it,m),this.ee.on(ot,v),s.on(et,v),a.on(et,v),this.ee.on("fn-err",((...t)=>{t[2]?.__newrelic?.[e]||(0,E.p)("function-err",[...t],void 0,this.featureName,this.ee)})),this.ee.buffer([nt,ot,"xhr-resolved"],this.featureName),d.buffer([nt],this.featureName),c.buffer(["setTimeout"+Qe,"clearTimeout"+Je,nt],this.featureName),u.buffer([nt,"new-xhr","send-xhr"+Je],this.featureName),l.buffer([rt+Je,rt+"-done",rt+$e+Je,rt+$e+Qe],this.featureName),f.buffer(["newURL"],this.featureName),g.buffer([nt],this.featureName),s.buffer(["propagate",it,et,"executor-err","resolve"+Je],this.featureName),o.buffer([nt,"no-"+nt],this.featureName),a.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),b(l,rt+Je),b(l,rt+"-done"),b(a,"new-jsonp"),b(a,"jsonp-end"),b(a,"cb-start"),f.on("pushState-end",p),f.on("replaceState-end",p),window.addEventListener("hashchange",p,(0,O.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",p,(0,O.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",(function(){p(0,i>1)}),(0,O.jT)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var st=i(3333);class ct extends v{static featureName=st.TZ;constructor(e,t,r=!0){super(e,t,st.TZ,r);[(0,a.gD)(this.agentIdentifier,"page_action.enabled")].some((e=>e))?this.importAggregator():(0,d.x3)(this.agentIdentifier,this.featureName)}}var ut=i(993),dt=i(3785);class lt extends v{static featureName=ut.TZ;constructor(e,t,r=!0){super(e,t,ut.TZ,r);const n=this.ee;this.ee.on("wrap-logger-end",(function([e]){const{level:t,customAttributes:r}=this;(0,dt.R)(n,e,r,t)})),this.importAggregator()}}new class extends n{constructor(t,r){super(r),h.gm?(this.sharedAggregator=new x({agentIdentifier:this.agentIdentifier}),this.features={},(0,A.bQ)(this.agentIdentifier,this),this.desiredFeatures=new Set(t.features||[]),this.desiredFeatures.add(y),this.runSoftNavOverSpa=[...this.desiredFeatures].some((e=>e.featureName===o.K.softNav)),(0,u.j)(this,t,t.loaderType||"agent"),this.run()):(0,e.R)(21)}get config(){return{info:this.info,init:this.init,loader_config:this.loader_config,runtime:this.runtime}}run(){try{const t=c(this.agentIdentifier),r=[...this.desiredFeatures];r.sort(((e,t)=>o.P[e.featureName]-o.P[t.featureName])),r.forEach((r=>{if(!t[r.featureName]&&r.featureName!==o.K.pageViewEvent)return;if(this.runSoftNavOverSpa&&r.featureName===o.K.spa)return;if(!this.runSoftNavOverSpa&&r.featureName===o.K.softNav)return;const n=function(e){switch(e){case o.K.ajax:return[o.K.jserrors];case o.K.sessionTrace:return[o.K.ajax,o.K.pageViewEvent];case o.K.sessionReplay:return[o.K.sessionTrace];case o.K.pageViewTiming:return[o.K.pageViewEvent];default:return[]}}(r.featureName).filter((e=>!(e in this.features)));n.length>0&&(0,e.R)(36,{targetFeature:r.featureName,missingDependencies:n}),this.features[r.featureName]=new r(this.agentIdentifier,this.sharedAggregator)}))}catch(t){(0,e.R)(22,t);for(const e in this.features)this.features[e].abortHandler?.();const r=(0,A.Zm)();delete r.initializedAgents[this.agentIdentifier]?.api,delete r.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator;return r.ee.get(this.agentIdentifier).abort(),!1}}}({features:[me,y,_,_e,Pe,P,U,ct,lt,ke,at],loaderType:"spa"})})()})();</script>
<meta property="og:image" content="https://posit.co/wp-content/themes/Posit/dist/images/site-share-image.jpg">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:url" content="https://www.posit.co/"/>
<meta property="og:title" content="Posit" />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- Start VWO Common Smartcode -->
<script data-cfasync="false" nowprocket type='text/javascript'>
var _vwo_clicks = 10;
</script>
<!-- End VWO Common Smartcode -->
<!-- Start VWO Async SmartCode -->
<link rel="preconnect" href="https://dev.visualwebsiteoptimizer.com" />
<script data-cfasync="false" nowprocket type='text/javascript' id='vwoCode'>
/* Fix: wp-rocket (application/ld+json) */
window._vwo_code || (function () {
var account_id=887437, // replace 1 with ${accountId} in release string
version=2.1,
settings_tolerance=2000,
library_tolerance=2500,
use_existing_jquery=false,
hide_element='body',
hide_element_style = 'opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important;transition:none !important;',
/* DO NOT EDIT BELOW THIS LINE */
f=false,w=window,d=document,v=d.querySelector('#vwoCode'),cK='_vwo_'+account_id+'_settings',cc={};try{var c=JSON.parse(localStorage.getItem('_vwo_'+account_id+'_config'));cc=c&&typeof c==='object'?c:{}}catch(e){}var stT=cc.stT==='session'?w.sessionStorage:w.localStorage;code={use_existing_jquery:function(){return typeof use_existing_jquery!=='undefined'?use_existing_jquery:undefined},library_tolerance:function(){return typeof library_tolerance!=='undefined'?library_tolerance:undefined},settings_tolerance:function(){return cc.sT||settings_tolerance},hide_element_style:function(){return'{'+(cc.hES||hide_element_style)+'}'},hide_element:function(){if(performance.getEntriesByName('first-contentful-paint')[0]){return''}return typeof cc.hE==='string'?cc.hE:hide_element},getVersion:function(){return version},finish:function(e){if(!f){f=true;var t=d.getElementById('_vis_opt_path_hides');if(t)t.parentNode.removeChild(t);if(e)(new Image).src='https://dev.visualwebsiteoptimizer.com/ee.gif?a='+account_id+e}},finished:function(){return f},addScript:function(e){var t=d.createElement('script');t.type='text/javascript';if(e.src){t.src=e.src}else{t.text=e.text}d.getElementsByTagName('head')[0].appendChild(t)},load:function(e,t){var i=this.getSettings(),n=d.createElement('script'),r=this;t=t||{};if(i){n.textContent=i;d.getElementsByTagName('head')[0].appendChild(n);if(!w.VWO||VWO.caE){stT.removeItem(cK);r.load(e)}}else{var o=new XMLHttpRequest;o.open('GET',e,true);o.withCredentials=!t.dSC;o.responseType=t.responseType||'text';o.onload=function(){if(t.onloadCb){return t.onloadCb(o,e)}if(o.status===200||o.status===304){_vwo_code.addScript({text:o.responseText})}else{_vwo_code.finish('&e=loading_failure:'+e)}};o.onerror=function(){if(t.onerrorCb){return t.onerrorCb(e)}_vwo_code.finish('&e=loading_failure:'+e)};o.send()}},getSettings:function(){try{var e=stT.getItem(cK);if(!e){return}e=JSON.parse(e);if(Date.now()>e.e){stT.removeItem(cK);return}return e.s}catch(e){return}},init:function(){if(d.URL.indexOf('__vwo_disable__')>-1)return;var e=this.settings_tolerance();w._vwo_settings_timer=setTimeout(function(){_vwo_code.finish();stT.removeItem(cK)},e);var t;if(this.hide_element()!=='body'){t=d.createElement('style');var i=this.hide_element(),n=i?i+this.hide_element_style():'',r=d.getElementsByTagName('head')[0];t.setAttribute('id','_vis_opt_path_hides');v&&t.setAttribute('nonce',v.nonce);t.setAttribute('type','text/css');if(t.styleSheet)t.styleSheet.cssText=n;else t.appendChild(d.createTextNode(n));r.appendChild(t)}else{t=d.getElementsByTagName('head')[0];var n=d.createElement('div');n.style.cssText='z-index: 2147483647 !important;position: fixed !important;left: 0 !important;top: 0 !important;width: 100% !important;height: 100% !important;background: white !important;';n.setAttribute('id','_vis_opt_path_hides');n.classList.add('_vis_hide_layer');t.parentNode.insertBefore(n,t.nextSibling)}var o='https://dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(d.URL)+'&vn='+version;if(w.location.search.indexOf('_vwo_xhr')!==-1){this.addScript({src:o})}else{this.load(o+'&x=true')}}};w._vwo_code=code;code.init();})();
</script>
<!-- End VWO Async SmartCode -->
<!-- This site is optimized with the Yoast SEO plugin v23.4 - https://yoast.com/wordpress/plugins/seo/ -->
<link rel="canonical" href="https://posit.co/download/rstudio-desktop/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="RStudio Desktop - Posit" />
<meta property="og:url" content="https://posit.co/download/rstudio-desktop/" />
<meta property="og:site_name" content="Posit" />
<meta property="article:modified_time" content="2024-07-18T22:56:33+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://posit.co/download/rstudio-desktop/","url":"https://posit.co/download/rstudio-desktop/","name":"RStudio Desktop - Posit","isPartOf":{"@id":"https://posit.co/#website"},"datePublished":"2022-10-21T20:10:19+00:00","dateModified":"2024-07-18T22:56:33+00:00","breadcrumb":{"@id":"https://posit.co/download/rstudio-desktop/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://posit.co/download/rstudio-desktop/"]}]},{"@type":"BreadcrumbList","@id":"https://posit.co/download/rstudio-desktop/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://posit.co/"},{"@type":"ListItem","position":2,"name":"RStudio Desktop"}]},{"@type":"WebSite","@id":"https://posit.co/#website","url":"https://posit.co/","name":"Posit","description":"The best data science is open source. Posit is committed to creating incredible open-source tools for individuals, teams, and enterprises.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://posit.co/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//posit.co' />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/posit.co\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.1"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='cmplz-general-css' href='https://posit.co/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1727289398' type='text/css' media='all' />
<link rel='stylesheet' id='enlighterjs-css' href='https://posit.co/wp-content/plugins/enlighter/cache/enlighterjs.min.css?ver=W8SxaadQZiDKk7R' type='text/css' media='all' />
<link rel="https://api.w.org/" href="https://posit.co/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://posit.co/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.6.1" />
<link rel='shortlink' href='https://posit.co/?p=5874' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://posit.co/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fposit.co%2Fdownload%2Frstudio-desktop%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://posit.co/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fposit.co%2Fdownload%2Frstudio-desktop%2F&format=xml" />
<style>.cmplz-hidden {
display: none !important;
}</style><noscript><style>.lazyload[data-src]{display:none !important;}</style></noscript><style>.lazyload{background-image:none !important;}.lazyload:before{background-image:none !important;}</style> <style type="text/css" id="wp-custom-css">
.marketo-contact-form .mktoForm .mktoFormRow:nth-child(8) .mktoFieldWrap {
flex-direction: column !important;
width: 100% !important;
}
.marketo-contact-form .mktoForm .mktoFormRow:nth-child(8) .mktoFieldWrap .mktoLabel {
--tw-text-opacity: 1;
color: rgb(23 33 43/var(--tw-text-opacity)) !important;
font-family: Source Code Pro,monospace !important;
font-size: 14px !important;
font-weight: 600 !important;
letter-spacing: .03em !important;
line-height: 160% !important;
padding-top: 0 !important;
text-transform: uppercase !important;
width: -webkit-fit-content!important !important;
width: -moz-fit-content!important;
width: fit-content!important;
margin-left: 0 !important;
}
.marketo-contact-form .mktoForm .mktoFormRow:nth-child(9) .mktoFieldWrap .mktoLabel {
--tw-text-opacity: 1;
color: rgb(23 33 43/var(--tw-text-opacity)) !important;
font-family: Source Code Pro,monospace !important;
font-size: 14px !important;
font-weight: 600 !important;
letter-spacing: .03em !important;
line-height: 160% !important;
padding-top: 0 !important;
text-transform: uppercase !important;
width: -webkit-fit-content!important !important;
width: -moz-fit-content!important;
width: fit-content!important;
margin-left: 0 !important;
}
}
.post-conference-2024 #conference-what-to-expect {
background-image: url('https://posit.co/wp-content/uploads/2024/02/seattle-skyline.png');
background-size: cover;
background-repeat: no-repeat;
}
#sample-event-hero .component-image img {
border-radius: 8px;
}
#conf24-stats-graphic {
background-image: url('/wp-content/uploads/2024/08/conf24-netwk-wht.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding-top: 360px;
padding-bottom: 360px;
}
.section-conf-24-teal-link {
.cta-link {
color: rgb(41, 112, 117);
}
}
@media (min-width: 1200px) {
.post-conference .hero .hero-foreground {
width: 480px !important;
}
}
@media (min-width: 1400px) {
.post-conference .hero .hero-foreground {
width: 500px !important;
}
}
@media (min-width: 1600px) {
.post-conference .hero .hero-foreground {
width: 540px !important;
}
}
/* HOMEPAGE */
.post-homepage .hero h1 {
font-size: 68px;
} </style>
<!-- Facebook (noscript) -->
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=151855192184380&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook (noscript) -->
<!-- Google Tag Manager (noscript) -->
<noscript><div class="cmplz-placeholder-parent"><iframe data-placeholder-image="https://posit.co/wp-content/plugins/complianz-gdpr/assets/images/placeholders/default-minimal.jpg" data-category="statistics" data-service="Google-Tag-Manager" class="cmplz-placeholder-element cmplz-iframe cmplz-iframe-styles cmplz-no-video " data-cmplz-target="src" data-src-cmplz="https://www.googletagmanager.com/ns.html?id=GTM-5F42KC6" src="about:blank"
height="0" width="0" style="display:none;visibility:hidden"></iframe></div></noscript>
<!-- End Google Tag Manager (noscript) -->
<link rel="stylesheet" type="text/css" href="https://posit.co/wp-content/themes/Posit/dist/app.css?id=3b17e8f0f980f79bc209a9d3957c763c">
<link rel="stylesheet" type="text/css" href="https://posit.co/wp-content/themes/Posit/dist/algolia.css?id=773a1a14eb83d145c3f9dcb4bd95a8e0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css">
<link rel="apple-touch-icon" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/favicon-16x16.png">
<link rel="manifest" crossOrigin="use-credentials" href="https://posit.co/wp-content/themes/Posit/dist/images/favicon/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff"> <svg class="max-h-0" width="94" height="91" viewBox="0 0 94 91" fill="none" role="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_1510_2062" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="94" height="91">
<path d="M0.5 23.5V0.5L93.5 42V49L0.5 90.5V66.5L49.5 45.5L0.5 23.5Z" fill="#D9D9D9"/>
</mask>
<mask id="mask0_1510_2066" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="94" height="91">
<path d="M93.5 67.5L93.5 90.5L0.500004 49L0.500004 42L93.5 0.5L93.5 24.5L44.5 45.5L93.5 67.5Z" fill="#D9D9D9"/>
</mask>
</svg>
<svg class="max-h-0" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" role="none">
<defs>
<clipPath id="clip0_2449_84618">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
<svg class="max-h-0" width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg" role="none">
<defs>
<clipPath id="clip0_2471_12848">
<rect width="12" height="12" fill="white" transform="translate(0 0.5)"/>
</clipPath>
</defs>
</svg>
</head>
<!-- js--wip -->
<body data-cmplz=2 class="antialiased text-[12px] post-5874 post-rstudio-desktop">
<!-- desktop nav -->
<nav id="nav-legacy" class="header-nav hidden lg:block fixed w-full z-50">
<div class="navigation container flex w-full h-[78px] py-[16px] px-[80px] items-center justify-between text-neutral-light/60">
<div class="absolute w-full h-[1px] left-0 top-[78px] bg-neutral-light/20 z-0"></div>
<div class="blur-bg absolute w-full h-full top-0 left-0 z-0"></div>
<div class="navigation-background absolute w-full h-[878px] max-h-[calc(75vh+78px)] top-0 left-0 translate-y-full z-[-1] bg-blue1 z-0"></div>
<div class="flex h-full z-20 items-center">
<a href="/" class="flex justify-center items-center focus-visible-link" aria-label="Posit Logo - Go to Homepage">
<div class="logo">
<img class="header-logo-img header-logo-img--initial lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Posit Logo" data-src="/wp-content/themes/Posit/assets/images/posit-logo-2024.svg" decoding="async"><noscript><img class="header-logo-img header-logo-img--initial" src="/wp-content/themes/Posit/assets/images/posit-logo-2024.svg" alt="Posit Logo" data-eio="l"></noscript>
<img class="header-logo-img header-logo-img--reverse lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Posit Logo" data-src="/wp-content/themes/Posit/assets/images/posit-logo-reverse-2024.svg" decoding="async"><noscript><img class="header-logo-img header-logo-img--reverse" src="/wp-content/themes/Posit/assets/images/posit-logo-reverse-2024.svg" alt="Posit Logo" data-eio="l"></noscript>
</div>
</a>
<ul class="items-container flex h-full ml-[16px]">
<li class="navbar-item grid items-center">
<a href="#" class="navbar-tab flex px-[12px] py-[8px] items-center" aria-haspopup="true" aria-expanded="false">
<div class="title ui-small text-neutral-dark62 uppercase">
Products
</div>
<div class="arrow ml-[4px]">
<svg class="" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M1.5 4L6 8L10.5 4" stroke="#17212B" stroke-linejoin="bevel"/></svg>
</div>
</a>
<section class="nav-modal invisible opacity-0 fixed w-full h-[800px] max-h-[75vh] grid-cols-12 top-[78px] left-0 overflow-y-auto">
<div class="flex flex-col h-full w-full lg:col-span-full overflow-y-auto">
<!-- tablet and mobile header -->
<a href="#" class="mobile-header flex lg:hidden py-[16px] px-[20px] md:px-[60px] items-center border-b border-neutral-light/20 sticky top-0 blur-bg z-10 uppercase">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="13" viewBox="0 0 12 13" width="12"><path d="m4 6.5-.3737-.33218v.66436zm4.3737 4.1678-4-4.49998-.7474.66436 4 4.50002zm-4-3.83562 4-4.5-.7474-.66436-4 4.5z" fill="#fff" fill-opacity=".6"/></svg>
<div class="ml-[16px] ui-medium ">
Products
</div>
</a>
<!-- modal content -->
<div class="modal-content container w-full h-full lg:grid lg:grid-cols-12">
<div class="banner-parent relative col-span-full lg:col-span-8">
<div class="grid grid-cols-8 lg:col-span-8 h-fit lg:pr-[28px] lg:py-[80px] pb-[40px] gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- description -->
<div class="left-description col-span-full lg:col-span-4 pt-[40px] lg:pt-0 lg:mb-[40px]">
<div class="ui-small text-neutral-light uppercase">
products
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
Explore our open source, cloud, and enterprise products
</div>
</div>
<div class="left-container col-span-full grid lg:grid-cols-8 gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- related links -->
<div class="related-link-column lg:col-start-1 col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/products/open-source/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Open Source" aria-label="Go to Open Source">
<div class="body-lg-regular text-neutral-light">
Open Source
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="grid mt-[16px]">
<a href="https://posit.co/products/open-source/rstudio/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
RStudio IDE
</a>
<a href="https://posit.co/products/open-source/rstudio-server/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
RStudio Server
</a>
<a href="https://shiny.posit.co/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Shiny
</a>
<a href="https://posit.co/products/open-source/shinyserver/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Shiny Server
</a>
<a href="https://posit.co/products/open-source/rpackages/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
R Packages
</a>
<a href="https://quarto.org" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Quarto
</a>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/products/enterprise/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Enterprise" aria-label="Go to Enterprise">
<div class="body-lg-regular text-neutral-light">
Enterprise
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="grid mt-[16px]">
<a href="https://posit.co/products/enterprise/team/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Team
</a>
<a href="https://posit.co/products/enterprise/workbench/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Workbench
</a>
<a href="https://posit.co/products/enterprise/connect/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Connect
</a>
<a href="https://posit.co/products/enterprise/package-manager/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Package Manager
</a>
<a href="https://posit.co/products/enterprise/academy/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Academy
</a>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/products/cloud/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Cloud" aria-label="Go to Cloud">
<div class="body-lg-regular text-neutral-light">
Cloud
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="grid mt-[16px]">
<a href="https://posit.co/products/cloud/cloud/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Cloud
</a>
<a href="https://connect.posit.cloud/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Connect Cloud
</a>
<a href="https://posit.co/products/cloud/public-package-manager/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Public Package Manager
</a>
<a href="https://www.shinyapps.io/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
shinyapps.io
</a>
<a href="https://posit.co/products/cloud/sagemaker/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Amazon SageMaker
</a>
<a href="https://posit.co/products/cloud/azure-ml/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
MS Azure
</a>
</div>
</div>
</div>
<div class="col-span-full mt-[32px] ml-[8px]">
<a class=" link link-sm-dark" href="https://posit.co/products/" target="" rel="" aria-label="">
View all Products
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
<!-- tablet and mobile banner -->
<div class="lg:hidden">
</div>
</div>
<div class="col-span-full lg:col-span-4 py-[40px] lg:py-[80px] lg:pl-[40px] lg:pr-0 border-t lg:border-l lg:border-t-0 border-neutral-light/[.1] z-10">
<div class="grid grid-cols-4 h-fit gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- right description -->
<div class="col-span-full h-fit pl-[8px] lg:pl-0">
<div class="ui-small text-neutral-light uppercase">
Pricing
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
We make data science available to everyone, regardless of your economic means.
</div>
</div>
<!-- image with cta -->
<div class="nav-image-with-cta grid col-span-full mt-[40px]">
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://posit.co/pricing/academic/" target="" rel="" aria-label="">
Academic
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://posit.co/pricing/small-medium-business/" target="" rel="" aria-label="">
Small & Medium Business
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://posit.co/self-service/" target="" rel="" aria-label="">
Self service
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://posit.co/pricing/" target="" rel="" aria-label="">
Enterprise
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
</div>
</div>
</div>
<!-- desktop banner-->
</div>
</section>
</li>
<li class="navbar-item grid items-center">
<a href="#" class="navbar-tab flex px-[12px] py-[8px] items-center" aria-haspopup="true" aria-expanded="false">
<div class="title ui-small text-neutral-dark62 uppercase">
Solutions
</div>
<div class="arrow ml-[4px]">
<svg class="" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M1.5 4L6 8L10.5 4" stroke="#17212B" stroke-linejoin="bevel"/></svg>
</div>
</a>
<section class="nav-modal invisible opacity-0 fixed w-full h-[800px] max-h-[75vh] grid-cols-12 top-[78px] left-0 overflow-y-auto">
<div class="flex flex-col h-full w-full lg:col-span-full overflow-y-auto">
<!-- tablet and mobile header -->
<a href="#" class="mobile-header flex lg:hidden py-[16px] px-[20px] md:px-[60px] items-center border-b border-neutral-light/20 sticky top-0 blur-bg z-10 uppercase">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="13" viewBox="0 0 12 13" width="12"><path d="m4 6.5-.3737-.33218v.66436zm4.3737 4.1678-4-4.49998-.7474.66436 4 4.50002zm-4-3.83562 4-4.5-.7474-.66436-4 4.5z" fill="#fff" fill-opacity=".6"/></svg>
<div class="ml-[16px] ui-medium ">
Solutions
</div>
</a>
<!-- modal content -->
<div class="modal-content container w-full h-full lg:grid lg:grid-cols-12">
<div class="banner-parent relative col-span-full lg:col-span-8">
<div class="grid grid-cols-8 lg:col-span-8 h-fit lg:pr-[28px] lg:py-[80px] pb-[40px] gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- description -->
<div class="left-description col-span-full lg:col-span-4 pt-[40px] lg:pt-0 lg:mb-[40px]">
<div class="ui-small text-neutral-light uppercase">
Solutions
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
Accelerate results with your data and our solutions.
</div>
</div>
<div class="left-container col-span-full grid lg:grid-cols-8 gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- related links -->
<div class="related-link-column lg:col-start-1 col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/solutions/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Solutions" aria-label="Go to Solutions">
<div class="body-lg-regular text-neutral-light">
Solutions
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="grid mt-[16px]">
<a href="https://posit.co/solutions/databricks/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Databricks
</a>
<a href="https://posit.co/solutions/snowflake/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Snowflake
</a>
<a href="https://posit.co/solutions/python/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Python
</a>
<a href="https://posit.co/solutions/pharma/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Pharma
</a>
<a href="https://posit.co/solutions/financial-services/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Finance
</a>
<a href="https://posit.co/solutions/data-science/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Serious Data Science
</a>
<a href="https://posit.co/solutions/business-intelligence/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Business Intelligence
</a>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/products/cloud/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Cloud Platform" aria-label="Go to Cloud Platform">
<div class="body-lg-regular text-neutral-light">
Cloud Platform
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="grid mt-[16px]">
<a href="https://posit.co/products/cloud/sagemaker/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Amazon SageMaker
</a>
<a href="https://posit.co/products/cloud/azure-ml/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Azure
</a>
<a href="https://posit.co/products/cloud/cloud/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Cloud
</a>
<a href="https://posit.co/products/cloud/aws/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
AWS
</a>
<a href="https://posit.co/solutions/google-cloud/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Google Cloud
</a>
</div>
</div>
</div>
<div class="col-span-full mt-[32px] ml-[8px]">
<a class=" link link-sm-dark" href="https://posit.co/solutions/" target="" rel="" aria-label="">
Go to Solutions
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
<!-- tablet and mobile banner -->
<div class="lg:hidden">
</div>
</div>
<div class="col-span-full lg:col-span-4 py-[40px] lg:py-[80px] lg:pl-[40px] lg:pr-0 border-t lg:border-l lg:border-t-0 border-neutral-light/[.1] z-10">
<div class="grid grid-cols-4 h-fit gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- right description -->
<div class="col-span-full h-fit pl-[8px] lg:pl-0">
<div class="ui-small text-neutral-light uppercase">
Customer stories
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
Our customers inspire us every day. We hope you’ll be inspired as well.
</div>
</div>
<!-- image with cta -->
<div class="nav-image-with-cta grid col-span-full mt-[40px]">
<img class="hidden lg:block w-full max-h-[200px] rounded-lg lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQAAAAK4AQAAAAADoW3MAAAAAnRSTlMAAHaTzTgAAACDSURBVHja7cExAQAAAMKg9U9tCU+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4G+1xwAB2r0SdgAAAABJRU5ErkJggg==" alt="3 smiling, young boys from Thailand wearing school uniforms and playing" data-src="https://posit.co/wp-content/uploads/2022/10/nav-img-customers.png" decoding="async" data-eio-rwidth="1280" data-eio-rheight="696" /><noscript><img class="hidden lg:block w-full max-h-[200px] rounded-lg" src="https://posit.co/wp-content/uploads/2022/10/nav-img-customers.png" alt="3 smiling, young boys from Thailand wearing school uniforms and playing" data-eio="l" /></noscript>
<img class="lg:hidden w-full max-h-[188px] rounded-lg lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQAAAAFRAQAAAAADAj0bAAAAAnRSTlMAAHaTzTgAAABLSURBVHja7cExAQAAAMKg9U9tCU+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBo0/EAAcVKd6YAAAAASUVORK5CYII=" alt="3 young, smiling boys from Thailand in school uniforms" data-src="https://posit.co/wp-content/uploads/2022/10/nav-img-customers-mobile.png" decoding="async" data-eio-rwidth="1280" data-eio-rheight="337" /><noscript><img class="lg:hidden w-full max-h-[188px] rounded-lg" src="https://posit.co/wp-content/uploads/2022/10/nav-img-customers-mobile.png" alt="3 young, smiling boys from Thailand in school uniforms" data-eio="l" /></noscript>
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://posit.co/about/customer-stories/" target="" rel="" aria-label="">
explore customer stories
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
</div>
</div>
</div>
<!-- desktop banner-->
</div>
</section>
</li>
<li class="navbar-item grid items-center">
<a href="#" class="navbar-tab flex px-[12px] py-[8px] items-center" aria-haspopup="true" aria-expanded="false">
<div class="title ui-small text-neutral-dark62 uppercase">
Learn & Support
</div>
<div class="arrow ml-[4px]">
<svg class="" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M1.5 4L6 8L10.5 4" stroke="#17212B" stroke-linejoin="bevel"/></svg>
</div>
</a>
<section class="nav-modal invisible opacity-0 fixed w-full h-[800px] max-h-[75vh] grid-cols-12 top-[78px] left-0 overflow-y-auto">
<div class="flex flex-col h-full w-full lg:col-span-full overflow-y-auto">
<!-- tablet and mobile header -->
<a href="#" class="mobile-header flex lg:hidden py-[16px] px-[20px] md:px-[60px] items-center border-b border-neutral-light/20 sticky top-0 blur-bg z-10 uppercase">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="13" viewBox="0 0 12 13" width="12"><path d="m4 6.5-.3737-.33218v.66436zm4.3737 4.1678-4-4.49998-.7474.66436 4 4.50002zm-4-3.83562 4-4.5-.7474-.66436-4 4.5z" fill="#fff" fill-opacity=".6"/></svg>
<div class="ml-[16px] ui-medium ">
Learn & Support
</div>
</a>
<!-- modal content -->
<div class="modal-content container w-full h-full lg:grid lg:grid-cols-12">
<div class="banner-parent relative col-span-full lg:col-span-8">
<div class="grid grid-cols-8 lg:col-span-8 h-fit lg:pr-[28px] lg:py-[80px] lg:pb-[162px] pb-[40px] gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- description -->
<div class="left-container col-span-full grid lg:grid-cols-8 gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- related links -->
<div class="related-link-column lg:col-start-1 col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/resources/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Resources" aria-label="Go to Resources">
<div class="body-lg-regular text-neutral-light">
Resources
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
Data science resources in one place.
</div>
<div class="grid mt-[16px]">
<a href="https://posit.co/blog/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Blog
</a>
<a href="https://posit.co/resources/cheatsheets/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Cheatsheets
</a>
<a href="https://posit.co/resources/videos/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Videos
</a>
<div class="mt-[16px]">
<a class=" link link-sm-dark" href="https://posit.co/resources/" target="" rel="" aria-label="">
View All
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/support/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Support" aria-label="Go to Support">
<div class="body-lg-regular text-neutral-light">
Support
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
Reach out. We’re here to help.
</div>
<div class="grid mt-[16px]">
<a href="https://docs.posit.co/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Documentation
</a>
<a href="https://forum.posit.co/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Community
</a>
<div class="mt-[16px]">
<a class=" link link-sm-dark" href="https://posit.co/support/" target="" rel="" aria-label="">
All Support
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<div class=" relative flex w-full pb-[8px] pl-[8px] items-center justify-between">
<div class="body-lg-regular text-neutral-light">
Education
</div>
</div>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
Let us help you build data science skills.
</div>
<div class="grid mt-[16px]">
<a href="https://posit.co/champions/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Champions
</a>
<a href="https://posit.co/products/enterprise/academy/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Posit Academy
</a>
<a href="https://posit.co/data-science-hangout/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Data Science Hangout
</a>
</div>
</div>
</div>
</div>
<!-- tablet and mobile banner -->
<div class="lg:hidden">
<div class="grid lg:flex lg:bottom-0 py-[40px] z-10 lg:justify-between lg:items-center border-t lg:border-t border-neutral-light/10">
<div>
<div class="ui-small text-neutral-light uppercase">
Certified Partners
</div>
<div class="mt-[8px] body-xs-regular text-neutral-light/60">
Posit Full Service Certified Partners resell Posit’s professional products.
</div>
</div>
<div class="mt-[32px] lg:mt-0 lg:mx-[30px] lg:min-w-max">
<a class=" link link-sm-dark" href="https://posit.co/certified-partners/" target="" rel="" aria-label="">
Learn more
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div> </div>
</div>
<div class="col-span-full lg:col-span-4 py-[40px] lg:py-[80px] lg:pl-[40px] lg:pr-0 border-t lg:border-l lg:border-t-0 border-neutral-light/[.1] z-10">
<div class="grid grid-cols-4 h-fit gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- right description -->
<div class="col-span-full h-fit pl-[8px] lg:pl-0">
<div class="ui-small text-neutral-light uppercase">
our community
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
We’re committed to the open source mission. And you’re a huge part of that.
</div>
</div>
<!-- image with cta -->
<div class="nav-image-with-cta grid col-span-full mt-[40px]">
<img class="hidden lg:block w-full max-h-[200px] rounded-lg lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQAAAAK4AQAAAAADoW3MAAAAAnRSTlMAAHaTzTgAAACDSURBVHja7cExAQAAAMKg9U9tCU+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4G+1xwAB2r0SdgAAAABJRU5ErkJggg==" alt="Large group of people in a conference space around columns with 'Community' text graphics and a tessellation of hex stickers" data-src="https://posit.co/wp-content/uploads/2022/10/nav-img-community.png" decoding="async" data-eio-rwidth="1280" data-eio-rheight="696" /><noscript><img class="hidden lg:block w-full max-h-[200px] rounded-lg" src="https://posit.co/wp-content/uploads/2022/10/nav-img-community.png" alt="Large group of people in a conference space around columns with 'Community' text graphics and a tessellation of hex stickers" data-eio="l" /></noscript>
<img class="lg:hidden w-full max-h-[188px] rounded-lg lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQAAAAFRAQAAAAADAj0bAAAAAnRSTlMAAHaTzTgAAABLSURBVHja7cExAQAAAMKg9U9tCU+gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOBo0/EAAcVKd6YAAAAASUVORK5CYII=" alt="Large group of people in a conference space around columns with 'Community' text graphics and a tessellation of hex stickers" data-src="https://posit.co/wp-content/uploads/2022/10/nav-img-community-mobile.png" decoding="async" data-eio-rwidth="1280" data-eio-rheight="337" /><noscript><img class="lg:hidden w-full max-h-[188px] rounded-lg" src="https://posit.co/wp-content/uploads/2022/10/nav-img-community-mobile.png" alt="Large group of people in a conference space around columns with 'Community' text graphics and a tessellation of hex stickers" data-eio="l" /></noscript>
<div class="mt-[40px]">
<a class=" link link-sm-dark" href="https://community.rstudio.com/" target="_blank" rel="noopener noreferrer" aria-label="">
Go to Posit Community
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div>
</div>
</div>
</div>
<!-- desktop banner-->
<div class="hidden lg:flex w-full absolute bottom-0 h-auto">
<div class="container grid grid-cols-12 relative">
<div class="banner-wrapper col-span-12 blur-bg lg:col-span-8">
<div class="grid lg:flex lg:bottom-0 py-[40px] z-10 lg:justify-between lg:items-center border-t lg:border-t border-neutral-light/10">
<div>
<div class="ui-small text-neutral-light uppercase">
Certified Partners
</div>
<div class="mt-[8px] body-xs-regular text-neutral-light/60">
Posit Full Service Certified Partners resell Posit’s professional products.
</div>
</div>
<div class="mt-[32px] lg:mt-0 lg:mx-[30px] lg:min-w-max">
<a class=" link link-sm-dark" href="https://posit.co/certified-partners/" target="" rel="" aria-label="">
Learn more
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div> </div>
</div>
</div>
</div>
</section>
</li>
<li class="navbar-item grid items-center">
<a href="#" class="navbar-tab flex px-[12px] py-[8px] items-center" aria-haspopup="true" aria-expanded="false">
<div class="title ui-small text-neutral-dark62 uppercase">
Explore More
</div>
<div class="arrow ml-[4px]">
<svg class="" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M1.5 4L6 8L10.5 4" stroke="#17212B" stroke-linejoin="bevel"/></svg>
</div>
</a>
<section class="nav-modal invisible opacity-0 fixed w-full h-[800px] max-h-[75vh] grid-cols-12 top-[78px] left-0 overflow-y-auto">
<div class="flex flex-col h-full w-full lg:col-span-full overflow-y-auto">
<!-- tablet and mobile header -->
<a href="#" class="mobile-header flex lg:hidden py-[16px] px-[20px] md:px-[60px] items-center border-b border-neutral-light/20 sticky top-0 blur-bg z-10 uppercase">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="13" viewBox="0 0 12 13" width="12"><path d="m4 6.5-.3737-.33218v.66436zm4.3737 4.1678-4-4.49998-.7474.66436 4 4.50002zm-4-3.83562 4-4.5-.7474-.66436-4 4.5z" fill="#fff" fill-opacity=".6"/></svg>
<div class="ml-[16px] ui-medium ">
Explore More
</div>
</a>
<!-- modal content -->
<div class="modal-content container w-full h-full lg:grid lg:grid-cols-12">
<div class="banner-parent relative col-span-full lg:col-span-6">
<div class="grid grid-cols-8 lg:col-span-6 h-fit lg:pr-[28px] lg:py-[80px] lg:pb-[162px] pb-[40px] gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- description -->
<div class="left-container col-span-full grid lg:grid-cols-6 gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- related links -->
<div class="related-link-column lg:col-start-1 col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/about/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to About" aria-label="Go to About">
<div class="body-lg-regular text-neutral-light">
About
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
We help the world make sense of data.
</div>
<div class="grid mt-[16px]">
<a href="https://posit.co/about/careers/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Careers
</a>
<a href="https://posit.co/about/pbc-report/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
PBC Annual Report
</a>
<a href="https://swag.rstudio.com/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Swag
</a>
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/about/analyst-reports/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to Analyst Reports" aria-label="Go to Analyst Reports">
<div class="body-lg-regular text-neutral-light">
Analyst Reports
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
Industry reports about Posit and our suite of professional products.
</div>
<div class="grid mt-[16px]">
</div>
</div>
<div class="related-link-column col-span-full md:col-span-4 lg:col-span-2 mt-[40px] lg:mt-0">
<a href="https://posit.co/conference/" target="" class="column-link relative flex w-full pb-[8px] pl-[8px] items-center justify-between" title="Go to posit::conf" aria-label="Go to posit::conf">
<div class="body-lg-regular text-neutral-light">
posit::conf
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="12" viewBox="0 0 12 12" width="12"><path d="m8 6 .3737.33218v-.66436zm-4.3737-4.16782 4 4.5.7474-.66436-4-4.5zm4 3.83564-4 4.49998.7474.6644 4-4.50002z" fill="#fff" class=""/></svg>
</a>
<div class="pl-[8px] mt-[8px] body-sm-regular text-neutral-light/60">
Bringing together ideas, technologies, and people. Join us virtually or in person.
</div>
<div class="grid mt-[16px]">
</div>
</div>
</div>
</div>
<!-- tablet and mobile banner -->
<div class="lg:hidden">
<div class="grid lg:flex lg:bottom-0 py-[40px] z-10 lg:justify-between lg:items-center border-t lg:border-t border-neutral-light/10">
<div>
<div class="ui-small text-neutral-light uppercase">
Posit Community
</div>
<div class="mt-[8px] body-xs-regular text-neutral-light/60">
Community is a core part of Posit culture. See what sets us apart.
</div>
</div>
<div class="mt-[32px] lg:mt-0 lg:mx-[30px] lg:min-w-max">
<a class=" link link-sm-dark" href="https://community.rstudio.com/" target="_blank" rel="noopener noreferrer" aria-label="">
Go to Community
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div> </div>
</div>
<div class="col-span-full lg:col-span-6 py-[40px] lg:py-[80px] lg:pl-[40px] lg:pr-0 border-t lg:border-l lg:border-t-0 border-neutral-light/[.1] z-10">
<div class="grid lg:grid-cols-6 grid-cols-4 h-fit gap-x-[8px] md:gap-x-[16px] lg:gap-x-[24px]">
<!-- right description -->
<div class="col-span-full h-fit pl-[8px] lg:pl-0">
<div class="ui-small text-neutral-light uppercase">
Additional Websites
</div>
<div class="mt-[8px] body-sm-regular text-neutral-light/60">
Interested in learning more about Posit? Explore these resources.
</div>
</div>
<!-- right related links -->
<div class="nav-related-links grid col-span-2 h-fit mt-[40px] lg:mt-[50px] ">
<div class="ui-small text-neutral-light uppercase pl-[8px]">
Analyze
</div>
<div class="grid mt-[16px]">
<a href="https://www.tidyverse.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
tidyverse
</a>
<a href="https://ggplot2.tidyverse.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
ggplot2
</a>
<a href="https://dplyr.tidyverse.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
dplyr
</a>
<a href="https://tidyr.tidyverse.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
tidyr
</a>
<a href="https://purrr.tidyverse.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
purrr
</a>
</div>
</div>
<div class="nav-related-links grid col-span-2 h-fit mt-[40px] lg:mt-[50px] ">
<div class="ui-small text-neutral-light uppercase pl-[8px]">
Communicate
</div>
<div class="grid mt-[16px]">
<a href="https://shiny.posit.co/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Shiny
</a>
<a href="https://quarto.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Quarto
</a>
<a href="https://rmarkdown.rstudio.com/flexdashboard/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
flexdashboard
</a>
<a href="https://rmarkdown.rstudio.com/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
R Markdown
</a>
</div>
</div>
<div class="nav-related-links grid col-span-2 h-fit mt-[40px] lg:mt-[50px] lg:row-span-2">
<div class="ui-small text-neutral-light uppercase pl-[8px]">
Integrate
</div>
<div class="grid mt-[16px]">
<a href="https://posit.co/download/posit-professional-drivers/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Professional Drivers
</a>
<a href="https://www.rstudio.com/products/launcher-plugin-sdk/download/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Launcher Plugin SDK
</a>
<a href="https://solutions.posit.co/envs-pkgs/environments/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Environments
</a>
<a href="https://spark.rstudio.com/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
sparklyr
</a>
<a href="https://www.rplumber.io/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
plumber
</a>
<a href="https://rstudio.github.io/reticulate/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
reticulate
</a>
</div>
</div>
<div class="nav-related-links grid col-span-2 h-fit mt-[40px] lg:mt-[50px] ">
<div class="ui-small text-neutral-light uppercase pl-[8px]">
Model
</div>
<div class="grid mt-[16px]">
<a href="https://tensorflow.rstudio.com/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Tensorflow
</a>
<a href="https://www.tidymodels.org/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
tidymodels
</a>
<a href="https://spark.rstudio.com/mlib/" target="_blank" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Spark MLib
</a>
<a href="https://vetiver.rstudio.com/" target="" class="related-link py-[12px] px-[8px] body-md-regular text-neutral-light/60">
Vetiver
</a>
</div>
</div>
</div>
</div>
</div>
<!-- desktop banner-->
<div class="hidden lg:flex w-full absolute bottom-0 h-auto">
<div class="container grid grid-cols-12 relative">
<div class="banner-wrapper col-span-12 blur-bg lg:col-span-6">
<div class="grid lg:flex lg:bottom-0 py-[40px] z-10 lg:justify-between lg:items-center border-t lg:border-t border-neutral-light/10">
<div>
<div class="ui-small text-neutral-light uppercase">
Posit Community
</div>
<div class="mt-[8px] body-xs-regular text-neutral-light/60">
Community is a core part of Posit culture. See what sets us apart.
</div>
</div>
<div class="mt-[32px] lg:mt-0 lg:mx-[30px] lg:min-w-max">
<a class=" link link-sm-dark" href="https://community.rstudio.com/" target="_blank" rel="noopener noreferrer" aria-label="">
Go to Community
<svg class="ml-[6px]" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 9.5L10 6L7 2.5" stroke="#A1B7CC" stroke-linejoin="bevel"/>
<path d="M9.5 6L2 6" stroke="#A1B7CC" stroke-linejoin="bevel"/>
</svg>
</a> </div>
</div> </div>
</div>
</div>
</div>
</section>
</li>
<li class="flex items-center">
<a href="https://posit.co/pricing/" target="" class="flex px-[12px] py-[8px] items-center title ui-small text-neutral-dark62 uppercase">
Pricing
</a>
</li>
</ul>
</div>