-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex5.html
3101 lines (2274 loc) · 167 KB
/
index5.html
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
<html class=" FB_FW_ext Bco FB_FW_ext BlitzScPluginAdapter"><head><link id="ui-theme" rel="stylesheet" href="https://static.licdn.com/sc/h/af9xzjjxzpk0m42sc591uoxml">
<link id="ui-theme-dark" rel="stylesheet" href="https://static.licdn.com/sc/h/def7xarfs2007bwbi4hdiz29n" disabled="">
<link rel="stylesheet" href="https://static.licdn.com/sc/h/22prj4xxtzt74xogdddc6rsqt">
<link rel="stylesheet" href="https://static.licdn.com/sc/h/wsmuld0m9yh6vczjsf00gbs9">
<link rel="stylesheet" href="https://static.licdn.com/sc/h/ebyremng8j5ujll7gu1c5xyh0">
<meta name="asset-url" id="artdeco-icons/static/images/icons.svg" content="https://static.licdn.com/sc/h/4u3n21bmitzyljlm274yvwzfu">
<meta name="voyager-web/config/asset-manifest" content="{"bundles":{"abi":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/22c8rsiip20iqykdwzm3w242z"},{"type":"css","uri":"https://static.licdn.com/sc/h/copur7cve931w3h58bz7d7mk"},{"type":"js","uri":"https://static.licdn.com/sc/h/cfynfn556hw2ck9aemvvzw94h"},{"type":"css","uri":"https://static.licdn.com/sc/h/34grr3pvgustw7skuddt065dw"}],"dependencies":[]},"ad-preview":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/7gyfbne0btrmdxx4d037yeor6"},{"type":"css","uri":"https://static.licdn.com/sc/h/2f9zjygdf5onog96gp2o97tt0"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"article-editor":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/c7s0f0ez3m78dsp7diezqhp2x"},{"type":"css","uri":"https://static.licdn.com/sc/h/4uuij39lddxfhgckip1c2h6yg"},{"type":"js","uri":"https://static.licdn.com/sc/h/7bxlwvxmubn5g17d7rwackalr"},{"type":"css","uri":"https://static.licdn.com/sc/h/7qh6lieipihewlogg44pueucc"}],"dependencies":[]},"article-reader":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/b957d27kjj722dudtcx9vw7qb"},{"type":"css","uri":"https://static.licdn.com/sc/h/6q505n4b07n1iqzb5kajzworh"},{"type":"js","uri":"https://static.licdn.com/sc/h/21gjnj1xtdfs9u22cnyyipr1f"},{"type":"css","uri":"https://static.licdn.com/sc/h/4esf5ds8b20lretw6vkiseuem"}],"dependencies":["feed-shared"]},"build-relation":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/711zn5hrvbcbennop4qo22jv5"}],"dependencies":[]},"career-services":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/ac7bp93c7wtczg0srn671ts8s"},{"type":"css","uri":"https://static.licdn.com/sc/h/47cy3u1t0zvhjus9cooznc9kf"},{"type":"js","uri":"https://static.licdn.com/sc/h/5nah4uvt20msyljh03mcwt69e"},{"type":"css","uri":"https://static.licdn.com/sc/h/5kn6hvxp0a60c1xkwu1lhzyud"}],"dependencies":[]},"company-creation":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/6xuecjjf0n7ki7lulgvf5fv6f"},{"type":"css","uri":"https://static.licdn.com/sc/h/agx4f99lac1yq46hgiysqa6jg"}],"dependencies":[]},"creator-analytics":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/6k6usosuph6kvmxthtqji540v"},{"type":"css","uri":"https://static.licdn.com/sc/h/ms4d74m65hcw548rqwngovrg"},{"type":"js","uri":"https://static.licdn.com/sc/h/eyuqc8vivah5jmancvx2p1su6"},{"type":"css","uri":"https://static.licdn.com/sc/h/18u8rxsrspw7ihdqjnxb2z27u"}],"dependencies":[]},"emoji-picker":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/7kfj07izesgpe650l326jm2v0"},{"type":"css","uri":"https://static.licdn.com/sc/h/d1oopmuxqcsbqljwxego6txba"}],"dependencies":null},"events-analytics":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/cfqqdqh1hdv119two0hdfxf2q"},{"type":"css","uri":"https://static.licdn.com/sc/h/390fv1uhfxsl6on1fueak94jr"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":[]},"events":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/3w5qv3ceg8ey828ue5m2nzbpz"},{"type":"css","uri":"https://static.licdn.com/sc/h/dysrg11w4glkwa9mqwgjzzg22"},{"type":"js","uri":"https://static.licdn.com/sc/h/cus3dkpszonlr25q7z2p0xf6n"},{"type":"css","uri":"https://static.licdn.com/sc/h/7jqombmgqv4eiko3vvor6ioiz"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"feed-debug":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/62fkom6smqj4qx8dsyss83jva"},{"type":"css","uri":"https://static.licdn.com/sc/h/42p2gulv15u8g0zpl5v1kh2tv"},{"type":"js","uri":"https://static.licdn.com/sc/h/cqte68f1b08ksemnr9cp32dzg"},{"type":"css","uri":"https://static.licdn.com/sc/h/937amxu6dpxru9cec9kxwfqdr"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed","feed-shared"]},"feed-detail":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/7lkkz17k8woi0xbrrxpfvsrlu"},{"type":"js","uri":"https://static.licdn.com/sc/h/a159679wgu9ufc27wrff5whqh"},{"type":"css","uri":"https://static.licdn.com/sc/h/bbvqyd3ci5dv54dhaxsstye6"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed","feed-shared"]},"feed-shared":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/16qdb343i50bfx2ippuxev4x7"},{"type":"css","uri":"https://static.licdn.com/sc/h/3vle84me2tqfhns10fde1ewc"},{"type":"js","uri":"https://static.licdn.com/sc/h/85aavabdhkb2bbuxrbx22546e"},{"type":"css","uri":"https://static.licdn.com/sc/h/9hgq86o2hzv5fqee3q0lodgnq"}],"dependencies":null},"feed":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/6n9izj130wlvfgjjajxpukeuf"},{"type":"css","uri":"https://static.licdn.com/sc/h/8qwajymrcoo7hmz0hv2136lbx"},{"type":"js","uri":"https://static.licdn.com/sc/h/8a7kjcb57rm4o6y0xakys1cer"},{"type":"css","uri":"https://static.licdn.com/sc/h/2neb5mszecuduns63b5poreb6"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"feedback":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/5txs2q5fsgbdblyhxcaai8r3q"},{"type":"css","uri":"https://static.licdn.com/sc/h/8irvoqn48k8jifwnande3dbmi"}],"dependencies":null},"groups-organizer":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/6k6usosuph6kvmxthtqji540v"},{"type":"css","uri":"https://static.licdn.com/sc/h/ms4d74m65hcw548rqwngovrg"},{"type":"js","uri":"https://static.licdn.com/sc/h/6tlxcw9yrgai42dy82k1eyir4"},{"type":"css","uri":"https://static.licdn.com/sc/h/2z289rnif930rrb7ryiaxwj63"}],"dependencies":null},"groups":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/50dnkdusxj4en3bztn8z1aguk"},{"type":"css","uri":"https://static.licdn.com/sc/h/9bamexdcu1ajg3vpt69t7p533"},{"type":"js","uri":"https://static.licdn.com/sc/h/8wvhx7ewysf3c2vjudm37gd7p"},{"type":"css","uri":"https://static.licdn.com/sc/h/75ujy0zmzcu5nlu3xckoyljho"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"hiring":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/1h9vkpy7eyfdekn8mvqszqisf"},{"type":"css","uri":"https://static.licdn.com/sc/h/eozuocxam4yumavvrnd9bpbtt"},{"type":"js","uri":"https://static.licdn.com/sc/h/5i7onehd83ij0x0zd0t53q4wf"},{"type":"css","uri":"https://static.licdn.com/sc/h/5r8r4c11igxm67ncqekenh2u2"}],"dependencies":["feed-shared"]},"inshare":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/5q3tdoubiisgpppwcv9jc15hi"},{"type":"css","uri":"https://static.licdn.com/sc/h/bhumyaqlm4y3xthprzflp9j5h"},{"type":"js","uri":"https://static.licdn.com/sc/h/8x7dfn193ifxlepviobon56g7"},{"type":"css","uri":"https://static.licdn.com/sc/h/3zs34wrdazssmzwz38gt4uccf"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"interview-prep":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/5wbzwn8o69qc7pust48k0223b"},{"type":"css","uri":"https://static.licdn.com/sc/h/d0mgicvajv6ao438y0r7mpmyc"}],"dependencies":[]},"jam":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/10cvo8mkvadul06kxqahitpv5"},{"type":"js","uri":"https://static.licdn.com/sc/h/7u3y7wy55biltn086juevc6b1"},{"type":"css","uri":"https://static.licdn.com/sc/h/37fbqkla0r6st6rfxer2s7l12"}],"dependencies":[]},"job-posting":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/a96yf6xonzkh9xceqquu9u8j4"},{"type":"css","uri":"https://static.licdn.com/sc/h/1u41nzwxbrh89k41i69lt1h6j"},{"type":"js","uri":"https://static.licdn.com/sc/h/1qzc45lolun4pbn725w87npmj"},{"type":"css","uri":"https://static.licdn.com/sc/h/1ldrupc56e1ex32kqdhdcu7ie"}],"dependencies":[]},"jobs-post-apply":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/10cvo8mkvadul06kxqahitpv5"},{"type":"js","uri":"https://static.licdn.com/sc/h/1alot7eljbafkid7zlw4y1g7m"},{"type":"css","uri":"https://static.licdn.com/sc/h/dr6k49qi3lrmbnd6678q55t5o"}],"dependencies":null},"jobs-search":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/1dgwjyldlwi7ksenc6ucmz3lb"},{"type":"css","uri":"https://static.licdn.com/sc/h/dlw845v69w4atokut5jgbc2b2"},{"type":"js","uri":"https://static.licdn.com/sc/h/2ehurdlt96uwbq41614xvorad"},{"type":"css","uri":"https://static.licdn.com/sc/h/90lrxyqpga7x8n17bmxtq3s8j"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":[]},"jobs":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/arf9jcvjdf3zuwmbcqwix1ped"},{"type":"css","uri":"https://static.licdn.com/sc/h/anffs7votdlaxtqdpo0feogoy"},{"type":"js","uri":"https://static.licdn.com/sc/h/rcjh9or7ezmufwyhg2g4clwf"},{"type":"css","uri":"https://static.licdn.com/sc/h/ce429zz83rnb0zk4a8xlbslh8"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"lead-capture":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/bk5edtepqv66j3yjw7np7bucn"},{"type":"css","uri":"https://static.licdn.com/sc/h/9erqecq6ukprg3ry3qewclf3e"},{"type":"js","uri":"https://static.licdn.com/sc/h/aim0sgse1kbnifvq7dmnaf7dt"},{"type":"css","uri":"https://static.licdn.com/sc/h/2pd8xvov12ltucxcjz4axn2t5"}],"dependencies":[]},"lead-gen":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/4vrtsowjizhyvgwwqossugy22"},{"type":"css","uri":"https://static.licdn.com/sc/h/e47w4jqqcnqs7bhzoc9vyifno"}],"dependencies":null},"marketplace-message-card":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/37xdp3k34u44u7a7wnkrvt1yu"},{"type":"js","uri":"https://static.licdn.com/sc/h/6k2c7wiq0ddvigbyrew62wth0"}],"dependencies":null},"me-ca":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/7lkkz17k8woi0xbrrxpfvsrlu"},{"type":"js","uri":"https://static.licdn.com/sc/h/8yke23r3qkit828vt47qaks3g"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"me":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/60eq1uvlurmj8erhllil8ogxh"}],"dependencies":["feed-shared"]},"member-analytics":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/6k6usosuph6kvmxthtqji540v"},{"type":"css","uri":"https://static.licdn.com/sc/h/ms4d74m65hcw548rqwngovrg"},{"type":"js","uri":"https://static.licdn.com/sc/h/bv22yjlk5ato2tpay37k6u36s"},{"type":"css","uri":"https://static.licdn.com/sc/h/bq5kz3l3ojldnzsj3rqeq2pqh"}],"dependencies":["feed-shared"]},"messaging":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/eum8acl3bbtu888tlgth7uuth"},{"type":"css","uri":"https://static.licdn.com/sc/h/96mum7xyxh6v252x0g3yvvwni"},{"type":"js","uri":"https://static.licdn.com/sc/h/4vc0vfyv3xg6nq6m7w8me0sc3"},{"type":"css","uri":"https://static.licdn.com/sc/h/15f0gjdm622dneldj4ko6acjd"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["msg-ui"]},"msg-multisend":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/5q3tdoubiisgpppwcv9jc15hi"},{"type":"css","uri":"https://static.licdn.com/sc/h/bhumyaqlm4y3xthprzflp9j5h"},{"type":"js","uri":"https://static.licdn.com/sc/h/1jfs8baezksljnt0d6jm0m7ru"},{"type":"css","uri":"https://static.licdn.com/sc/h/9z5uzbnlmhz59lce22jvbxjb8"}],"dependencies":null},"msg-overlay":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/9f8y5cj8sqetipljb807b15lh"},{"type":"css","uri":"https://static.licdn.com/sc/h/d3pwo9zer2ula992z9uoyh87x"},{"type":"js","uri":"https://static.licdn.com/sc/h/9kb9063ha8hw1qh7r528y1w0x"},{"type":"css","uri":"https://static.licdn.com/sc/h/2ivkum6045b0dnmo3fw5eswk6"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["msg-ui"]},"msg-reactions":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/37xdp3k34u44u7a7wnkrvt1yu"},{"type":"js","uri":"https://static.licdn.com/sc/h/evz1fcviycukx75aktcevljn6"},{"type":"css","uri":"https://static.licdn.com/sc/h/a3xm92v4t25sp6uyv8ta2676f"}],"dependencies":["emoji-picker"]},"msg-referrals":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/bihgbqlzw9qd6eug64n15xius"},{"type":"css","uri":"https://static.licdn.com/sc/h/3z78wsbn1362ia1yeebqp4kuy"}],"dependencies":null},"msg-ui":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/bnez7019c3xd9ylexpjan4kg3"},{"type":"css","uri":"https://static.licdn.com/sc/h/1ourugqf5z78t97h00xrzn66t"},{"type":"js","uri":"https://static.licdn.com/sc/h/7p7qab9ipxz7kq5jjmfmvq0jb"},{"type":"css","uri":"https://static.licdn.com/sc/h/5otzvhfoq5z4or39wttl7dgz5"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["emoji-picker","msg-reactions"]},"msg-video-call":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/daxnc57lbey4c0z8xnb88xd0b"},{"type":"css","uri":"https://static.licdn.com/sc/h/52vhrrfdgosuxbastdvnm8zly"},{"type":"js","uri":"https://static.licdn.com/sc/h/7ncccd6f5sxjyx39drbi9m4c7"},{"type":"css","uri":"https://static.licdn.com/sc/h/8b0zm1qjl4ledeq2bsza9h3t5"}],"dependencies":[]},"mynetwork":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/8smnkm2z27t1z7yaw2st30r74"},{"type":"css","uri":"https://static.licdn.com/sc/h/6uvpiibgzcdbag057foguov4l"},{"type":"js","uri":"https://static.licdn.com/sc/h/7hs694l2w9xtsvf7ub63po70a"},{"type":"css","uri":"https://static.licdn.com/sc/h/albawbshi85t1y1ehwegnf13n"}],"dependencies":[]},"news":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/7ze4ujs9olzj95qzhp9zlng1u"},{"type":"css","uri":"https://static.licdn.com/sc/h/effl4w42vr1uf5z9d9rtqhbnv"},{"type":"js","uri":"https://static.licdn.com/sc/h/2ui9uu67fhylxw0clgm6theb6"},{"type":"css","uri":"https://static.licdn.com/sc/h/3h734ensfzteti1tq5if2fgeo"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"notifications":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/58u7564dc9qljqqouzboc5yjv"},{"type":"css","uri":"https://static.licdn.com/sc/h/1lz41j9zkb9pfafsp54p6sqvl"},{"type":"js","uri":"https://static.licdn.com/sc/h/5ztjfailr9f8gxsw5sm4s91fg"},{"type":"css","uri":"https://static.licdn.com/sc/h/7fxcxp9wyzsrt6t52uh1pjpuf"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"onboarding":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/30mj9d9ubiqh17wx7ptpwkfsl"},{"type":"css","uri":"https://static.licdn.com/sc/h/280a90r4kne4o2gwbal0mdrmb"},{"type":"js","uri":"https://static.licdn.com/sc/h/850kzkmtbs9hl8z04lrt625is"},{"type":"css","uri":"https://static.licdn.com/sc/h/7iajh2zkg56slfix3v2ro5c5y"}],"dependencies":[]},"organization-about":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/em39liq2jffni4cjcj5xev9o7"},{"type":"css","uri":"https://static.licdn.com/sc/h/c9orlbno3nn518grakl9zfuqu"}],"dependencies":["feed-shared","organization"]},"organization-admin-jobs":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/e04x53hjc68xlq8irllwmqfhm"}],"dependencies":[]},"organization-admin-life":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/30qo9zii0beeq1qdyke4ky3js"},{"type":"css","uri":"https://static.licdn.com/sc/h/aj0jdzfxlclz61znmnfphs3jj"},{"type":"js","uri":"https://static.licdn.com/sc/h/8s07oqi5nca4hg12klb7jqnq3"},{"type":"css","uri":"https://static.licdn.com/sc/h/e2xqb4ai4sr1bk27oce8ri7it"}],"dependencies":[]},"organization-admin":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/ehaoevkonan0b07g5giyo2264"},{"type":"css","uri":"https://static.licdn.com/sc/h/8la9ab3zjsf3c7fpicddjp06n"},{"type":"js","uri":"https://static.licdn.com/sc/h/awuvjrl2826dworn2zjzwdw8l"},{"type":"css","uri":"https://static.licdn.com/sc/h/8t7zfxzk6xhlpqi6aqkegwows"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["msg-reactions","feed-shared"]},"organization-content-suggestions":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/5mg3lbbbv6qtvs10u5hi2qh17"},{"type":"css","uri":"https://static.licdn.com/sc/h/14pn1u4kbqfqi3herk6y6reai"},{"type":"js","uri":"https://static.licdn.com/sc/h/2av7ocrjx6j6zfg4nsp4f7o28"},{"type":"css","uri":"https://static.licdn.com/sc/h/4hlmssjpba93lsqyavnfpf1r2"}],"dependencies":null},"organization-employee-experience":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/a60ie1vrkxnhdwvtn64jwrzf4"},{"type":"css","uri":"https://static.licdn.com/sc/h/f507br3matvmogjmj1x1i2r16"},{"type":"js","uri":"https://static.licdn.com/sc/h/7shqa6agdbmnh79a2u1np2nms"},{"type":"css","uri":"https://static.licdn.com/sc/h/9z83xjtej17bohce6yf0evrqv"}],"dependencies":["feed-shared","organization"]},"organization-events":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/5wtilnhq6j05wicffpzbdo2kf"},{"type":"css","uri":"https://static.licdn.com/sc/h/8cjr573xr7odo8vihzna0mun2"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared","organization"]},"organization-featured-content":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/cpmkj0edc8ldiphtyw2jxp66k"},{"type":"css","uri":"https://static.licdn.com/sc/h/64wi6iu6iz05wwa66g12tdh9b"}],"dependencies":null},"organization-insights":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/cgqs62p31dzcbhyrmq6b5s3bq"},{"type":"css","uri":"https://static.licdn.com/sc/h/1x09wf1ku8lvs8ivz3ks670re"},{"type":"js","uri":"https://static.licdn.com/sc/h/1x43j22vqodvbm8el275b2igz"}],"dependencies":["feed-shared","organization"]},"organization-jobs":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/etklwsq7au04kx5x25pnuikn"},{"type":"css","uri":"https://static.licdn.com/sc/h/ctxljs4tzhiszblx3cdb6ctcc"},{"type":"js","uri":"https://static.licdn.com/sc/h/a9u76f2umcnoxx04iie6qas8f"},{"type":"css","uri":"https://static.licdn.com/sc/h/ar2hg67bp9vkyjdzo4wxlyku0"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared","organization"]},"organization-life":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/byfjfn2lq9cocv96wkfzbo6vp"},{"type":"css","uri":"https://static.licdn.com/sc/h/az16iujc6urobsa67pm0swqom"},{"type":"js","uri":"https://static.licdn.com/sc/h/8oep9iuka8tztbfjnsc5sr9xt"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared","organization"]},"organization-people":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/cu9wvhiqhla2p9lutl3l36k9n"},{"type":"css","uri":"https://static.licdn.com/sc/h/bbkiid0liiiz8242t7lvtzrma"},{"type":"js","uri":"https://static.licdn.com/sc/h/aea0wn6rum4sqg0wcsth9umd1"},{"type":"css","uri":"https://static.licdn.com/sc/h/7pet35v5q8fj4y1zygy5npgs1"}],"dependencies":["feed-shared","organization"]},"organization-posts":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/c00h5hbmgjtqaizioz3lamfp"}],"dependencies":["feed-shared","organization"]},"organization-product":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/egv6q5oz06khiuggmpn5u2dr"},{"type":"css","uri":"https://static.licdn.com/sc/h/56t2ohvy6vhxf9e9bxtaqmgg7"}],"dependencies":[]},"organization-videos":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/8pm28r560j99mm298h8dosnff"},{"type":"css","uri":"https://static.licdn.com/sc/h/7egn5lykkikpwofej86v2vcq8"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared","organization"]},"organization":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/caqzjx36ykrv5n43ibnmgyvvi"},{"type":"js","uri":"https://static.licdn.com/sc/h/9xnoyjwxw9lnrc73ck2c4zbmo"},{"type":"css","uri":"https://static.licdn.com/sc/h/bwex9g5k0t89hwewcrx2sdvxd"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"participate-text-editor":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/5ljlr88wee65avm0iwj5zt8ue"},{"type":"css","uri":"https://static.licdn.com/sc/h/1eusa9u1l6npjjusyzdojji50"},{"type":"js","uri":"https://static.licdn.com/sc/h/509weiajoiem94tpto0vnr2ug"},{"type":"css","uri":"https://static.licdn.com/sc/h/5hmmo46qqh6jy6q0dl54q1l6q"}],"dependencies":null},"premium":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/2km6cqn3ohvpsfjnr7210uq8l"},{"type":"css","uri":"https://static.licdn.com/sc/h/cfsd3kbc5yncma5hfon5sm32a"},{"type":"js","uri":"https://static.licdn.com/sc/h/52jc8956fk1at5z0dwmyz67pm"},{"type":"css","uri":"https://static.licdn.com/sc/h/2iw0puc2nsqgomy09ckpzap2b"}],"dependencies":["feed-shared"]},"products":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/doeheiow1lrein7vzmugqzs2e"},{"type":"js","uri":"https://static.licdn.com/sc/h/b5kkfa2ulufu3ovgybpxea87c"},{"type":"css","uri":"https://static.licdn.com/sc/h/bzd1ejndgnovfpwc4j94di887"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"profile-creator-dashboard":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/c6c74kqtf8r20waa5wgfkm67e"},{"type":"css","uri":"https://static.licdn.com/sc/h/9pae3b1mb72heu6dareeqofum"},{"type":"js","uri":"https://static.licdn.com/sc/h/ew0rym5v86uuvt6cfq5a1nbib"},{"type":"css","uri":"https://static.licdn.com/sc/h/r05xn0w0ad9ve7vziakjs0xz"}],"dependencies":["feed-shared"]},"profile-creator-mode":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/d1ro6wbh37udsracrhfex8bai"},{"type":"css","uri":"https://static.licdn.com/sc/h/2g2xbj7t5s2hr7yk3d7oajett"},{"type":"js","uri":"https://static.licdn.com/sc/h/16b99puota80kdm462w2mpujp"},{"type":"css","uri":"https://static.licdn.com/sc/h/2i5po52ulmnm8am64ht8r2upx"}],"dependencies":null},"profile-edit":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/1yc1ubhm1irrps105yniexl5w"},{"type":"css","uri":"https://static.licdn.com/sc/h/3kxss0m6ev0nozr4sd6qqlhdv"},{"type":"js","uri":"https://static.licdn.com/sc/h/25ai0o2o2os9dcwlfdspsfhsb"},{"type":"css","uri":"https://static.licdn.com/sc/h/3gcgxltemx26g4estttvuoxy8"}],"dependencies":["profile-tetris","feed-shared"]},"profile-ge":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/8o6ijgexxxj42oxmg4hdvof12"},{"type":"js","uri":"https://static.licdn.com/sc/h/2ez48s9ms1yoptmw7xxcauwvo"},{"type":"css","uri":"https://static.licdn.com/sc/h/4uzpfyla20ksvn730ncdvp9w2"}],"dependencies":["profile-tetris","feed-shared"]},"profile-opportunities":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/bhhc9k6s7khd7nue6uo90fkip"},{"type":"css","uri":"https://static.licdn.com/sc/h/a5wz7zfru582fuewvgbtfasr0"},{"type":"js","uri":"https://static.licdn.com/sc/h/ameb4z8sh7nt8wgaq986s48jd"},{"type":"css","uri":"https://static.licdn.com/sc/h/8op86b97jdspnipsx6pou2ydj"}],"dependencies":null},"profile-search-analytics":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/boyz55b2f8mdnxmgh7fas9z61"}],"dependencies":["feed-shared"]},"profile-skill-assessments":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/b2h6j0uzq9k9vnr58ogllajeb"},{"type":"css","uri":"https://static.licdn.com/sc/h/4pwe65xri2t5xl6fc1wvmgxy9"},{"type":"js","uri":"https://static.licdn.com/sc/h/84233bpnwuk7s2y748qewtd63"},{"type":"css","uri":"https://static.licdn.com/sc/h/rnb09r2wrgre2b2e4hmrz9p2"}],"dependencies":[]},"profile-tetris":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/3iyxb3hi5859kngt4eo8ov4kz"},{"type":"css","uri":"https://static.licdn.com/sc/h/cowyrjwiuz9m9dpkiotcayskb"},{"type":"js","uri":"https://static.licdn.com/sc/h/a2hzn8wndaiy0avoi9kiiadcy"},{"type":"css","uri":"https://static.licdn.com/sc/h/ckyxin41ft7fijkiicqfb25v7"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"props-home":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/37xdp3k34u44u7a7wnkrvt1yu"},{"type":"js","uri":"https://static.licdn.com/sc/h/66k3t1hfp201wt15vgy3us2cg"},{"type":"css","uri":"https://static.licdn.com/sc/h/1d8xomydv43eyzmzm94ge8imf"}],"dependencies":[]},"publishing-entity":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/814b62fi1kl3okvwnlr0r7h8q"},{"type":"css","uri":"https://static.licdn.com/sc/h/7l5cb6fxk2u6eprupbfx6wzu6"},{"type":"js","uri":"https://static.licdn.com/sc/h/amisomr1jnm2f5tfonznic5nj"},{"type":"css","uri":"https://static.licdn.com/sc/h/e30kie95oa62hap0gvq98q9ug"}],"dependencies":["feed-shared"]},"publishing":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/4nmndpk71y9981yb0x3h7ch5r"},{"type":"css","uri":"https://static.licdn.com/sc/h/cixtfruvfc4qg6uoiaibadijt"},{"type":"js","uri":"https://static.licdn.com/sc/h/2hl4mr2hdu53jq6cim8io14wx"},{"type":"css","uri":"https://static.licdn.com/sc/h/3umwef7uii5ocvmfgimo0zvpj"}],"dependencies":["feed-shared"]},"resume-builder":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/3it8st4ngyqy5xzvjr9kb4347"},{"type":"css","uri":"https://static.licdn.com/sc/h/dbz7zwrbqxpfw8mv0h4mpfuns"},{"type":"js","uri":"https://static.licdn.com/sc/h/39ac5knsjeep4dqm6qaoxy3tc"},{"type":"css","uri":"https://static.licdn.com/sc/h/c8sfos8zlpq4x4vgp10g79lok"}],"dependencies":[]},"rooms":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/8x9b9z5doeukmwc23wocmj0gk"},{"type":"css","uri":"https://static.licdn.com/sc/h/8o8iapzf6w5pjv7y4qyck26is"}],"dependencies":[]},"search":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/369ibd0auov8m5kpa679i17fz"},{"type":"css","uri":"https://static.licdn.com/sc/h/7d5js5ukxw360a1hknuhcpf70"},{"type":"js","uri":"https://static.licdn.com/sc/h/891gvt768i4wnj2l35mnouccb"},{"type":"css","uri":"https://static.licdn.com/sc/h/6uqfwe69sabd5i6ihw52ekbxi"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"service-marketplace":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/eb8lyorfv317g2hl8fmlr8pb4"},{"type":"css","uri":"https://static.licdn.com/sc/h/2iviqtiez9l3ojw4rmuj2fjwh"},{"type":"js","uri":"https://static.licdn.com/sc/h/wvwqe6cfwv8ubcnm5jaltj3o"},{"type":"css","uri":"https://static.licdn.com/sc/h/vwwzvqv5umwraxipxo9dus9x"}],"dependencies":[]},"sharing-v2":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/ege899zlc86y2evhdnwdr4hyn"},{"type":"css","uri":"https://static.licdn.com/sc/h/1f13bib3go7b6gdrj4313rdga"},{"type":"js","uri":"https://static.licdn.com/sc/h/79q898szn376dm0dfm1cba7ih"},{"type":"css","uri":"https://static.licdn.com/sc/h/be9j6jtg667lf977tvzhf40y1"}],"dependencies":[]},"smp-service-pages":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/1745gt4rdhh7ovvend9r35nr3"},{"type":"css","uri":"https://static.licdn.com/sc/h/c2s3d4lhm2caech2l2y7ygm0"},{"type":"js","uri":"https://static.licdn.com/sc/h/8za1myyutds1evr9majgyy02c"},{"type":"css","uri":"https://static.licdn.com/sc/h/57d5cp10m0ktxpfc5u2mehjre"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"stories-engine":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/3auj9f7locs09s7ra8xzuk5bs"},{"type":"css","uri":"https://static.licdn.com/sc/h/1nuj6ohckllwz7skwlr3ukscj"},{"type":"js","uri":"https://static.licdn.com/sc/h/8ut02povmwu43z4an1srpubg1"},{"type":"css","uri":"https://static.licdn.com/sc/h/z6im4jkuyei0t8l0lgg02ip"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"suggested-for-you":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/5j60abc4fy7e476lqyolut0i9"}],"dependencies":[]},"tenor-gif":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/b26amb60597wezpiotzna98lv"},{"type":"css","uri":"https://static.licdn.com/sc/h/2qim0suuswum7u93e1gmhesf1"}],"dependencies":null},"tracking-overlay":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/7sc5t3aiwupu1q85jnd50sao4"},{"type":"js","uri":"https://static.licdn.com/sc/h/3l0kv85bclv7i0bryrmu1qv3q"},{"type":"css","uri":"https://static.licdn.com/sc/h/advgolhri40xvet45lkpniss7"}],"dependencies":null},"trust-verifications":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/4kj59l06947ewmc0a5w0dgizj"},{"type":"css","uri":"https://static.licdn.com/sc/h/efw0hbj3r3a3x4nj4du1lixj4"}],"dependencies":[]},"video-conferencing":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/6pi6zca0xepxjgxgpf72xkuob"},{"type":"js","uri":"https://static.licdn.com/sc/h/57cs7ajmyu3bzcngeotwawgxs"}],"dependencies":null},"video-engine":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/2ddqjpxt81uwlls5upnsh5rcz"},{"type":"css","uri":"https://static.licdn.com/sc/h/723oe4btm10yven4659vmpm4b"},{"type":"js","uri":"https://static.licdn.com/sc/h/1xvwsuimt88vb8wy722udgtj8"},{"type":"css","uri":"https://static.licdn.com/sc/h/c8p7q9dztz0vjxvprdecu0p80"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":["feed-shared"]},"video-go-live":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/5ekhlfai8tbtsnr6gq3fado10"},{"type":"css","uri":"https://static.licdn.com/sc/h/elh5ermdtdath9vomiwpedkls"},{"type":"js","uri":"https://static.licdn.com/sc/h/9z18v5jhcqil8ogndyxiwgfhg"}],"dependencies":[]},"video-intro":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/coa7f3ykpl4n59lxspa6n42h5"},{"type":"js","uri":"https://static.licdn.com/sc/h/78l0yol165nrf2g0ausdjukyf"},{"type":"css","uri":"https://static.licdn.com/sc/h/bxk06t15itof07kp3k3fts98p"}],"dependencies":[]},"workflow":{"assets":[{"type":"js","uri":"https://static.licdn.com/sc/h/43xlypq4bj7wlzbdcznyx2rc6"},{"type":"css","uri":"https://static.licdn.com/sc/h/acqlg20hgp9h5qaziehq0hfv8"},{"type":"js","uri":"https://static.licdn.com/sc/h/8elzppiuxqosvrlj4evaj87gb"},{"type":"css","uri":"https://static.licdn.com/sc/h/2sczt8p3w5zxomrva2r2b8dts"}],"dependencies":["feed-shared"]}}}">
<link rel="stylesheet" href="https://static.licdn.com/sc/h/cowyrjwiuz9m9dpkiotcayskb"><link rel="stylesheet" href="https://static.licdn.com/sc/h/ckyxin41ft7fijkiicqfb25v7"><link rel="stylesheet" href="https://static.licdn.com/sc/h/3vle84me2tqfhns10fde1ewc"><link rel="stylesheet" href="https://static.licdn.com/sc/h/9hgq86o2hzv5fqee3q0lodgnq">
<link rel="stylesheet" href="https://static.licdn.com/sc/h/9pclaw5fy5sia47dwkdpz6rih" class="lazy-css" disabled="">
<style id="__web-inspector-hide-shortcut-style__">
.__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ *, .__web-inspector-hidebefore-shortcut__::before, .__web-inspector-hideafter-shortcut__::after
{
visibility: hidden !important;
}
</style></head><body><div class="scaffold-layout__row scaffold-layout__content
scaffold-layout__content--main-aside
scaffold-layout__content--has-aside
">
<!-- -->
<main class="scaffold-layout__main">
<!----><!----> <section id="ember1514" class="artdeco-card ember-view pv-top-card" data-member-id="1050282244"><!--- ----->
<div class="live-video-hero-image
" style="min-height: 99px; max-height: 99px;">
<div class="live-video-hero-image__bg-image">
<div tabindex="-1" class="profile-background-image profile-background-image--default">
<!----></div>
</div>
<div class="live-video-hero-image__live-video">
<!----> </div>
</div>
<div class="ph5 pb5">
<div class="display-flex">
<div class="pv-top-card--photo text-align-left
pv-top-card--photo-resize">
<div class="pv-top-card__non-self-photo-wrapper ml0">
<button class="pv-top-card-profile-picture pv-top-card-profile-picture__container display-block
pv-top-card__photo presence-entity__image EntityPhoto-circle-9
" type="button">
<img width="200" title="Nikolai Didkovski" src="nikolai1.jpg" height="200" alt="Nikolai Didkovski" id="ember1515" class="pv-top-card-profile-picture__image pv-top-card-profile-picture__image--show ember-view">
<!---->
<!---->
</button>
<div class="presence-entity__indicator presence-entity__indicator--size-9 presence-indicator
hidden
presence-indicator--size-9">
<span class="visually-hidden">
Status is offline
</span>
</div>
</div>
</div>
<div class="flex-1 flex-column">
<div class="pv-top-card__badge-wrap">
<!----><!----><!----> </div>
</div>
</div>
<div class="mt2 relative">
<div class="pv-text-details__left-panel
">
<div>
<h1 class="text-heading-xlarge inline t-24 v-align-middle break-words">Nikolai Didkovski</h1>
<!----><!----><!----><!----> </div>
<!----> <div class="text-body-medium break-words" data-generated-suggestion-target="urn:li:fsu_profileActionDelegate:-2015927531">
Data Analyst
</div>
<!----><!----> </div>
<ul class="pv-text-details__right-panel">
<!----> <li class="pv-text-details__right-panel-item">
<button class="pv-text-details__right-panel-item-link text-align-left" aria-label="Education: Clark University. Click to skip to education card" type="button">
<img src="https://media.licdn.com/dms/image/C4D0BAQHye5QrVTfbtg/company-logo_100_100/0/1519855936112?e=1688601600&v=beta&t=700BH3ejWsfkoR2RzmJT3sR1alvf4SanwVUn5vLFXQo" alt="" id="ember1516" class="ember-view pv-text-details__right-panel-item-text-image EntityPhoto-square-1">
<span class="pv-text-details__right-panel-item-text hoverable-link-text break-words text-body-small t-black">
<div class="inline-show-more-text
inline-show-more-text--is-collapsed
inline-show-more-text--is-collapsed-with-line-clamp
inline" style="-webkit-line-clamp:2;" tabindex="-1">
Clark University
<!----></div>
</span>
</button>
</li>
</ul>
<div class="pv-text-details__left-panel mt2">
<span class="text-body-small inline t-black--light break-words">
Boston, Massachusetts, United States
</span>
<span class="pv-text-details__separator t-black--light">
<a href="https://www.linkedin.com/in/nikolai-didkovski-2848a2253/" id="top-card-text-details-contact-info" class="ember-view link-without-visited-state cursor-pointer text-heading-small inline-block break-words">
Linkedin Profile
</a>
</span>
</div>
</div>
<!----> <ul style="display: none" class="pv-top-card--list pv-top-card--list-bullet">
<!---->
<li class="text-body-small">
<span class="t-black--light">
<span class="t-bold">4</span> connections
</span>
</li>
</ul>
<!---->
<div class="pv-top-card-v2-ctas ">
<!---->
<!---->
<div class="pvs-profile-actions
">
<button aria-label="Invite Nikolai Didkovski to connect" id="ember1518" class="artdeco-button artdeco-button--2 artdeco-button--primary ember-view pvs-profile-actions__action
" type="button"> <li-icon aria-hidden="true" type="connect" class="artdeco-button__icon" size="small"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" data-supported-dps="16x16" fill="currentColor" class="mercado-match" width="16" height="16" focusable="false">
<path d="M9 4a3 3 0 11-3-3 3 3 0 013 3zM6.75 8h-1.5A2.25 2.25 0 003 10.25V15h6v-4.75A2.25 2.25 0 006.75 8zM13 8V6h-1v2h-2v1h2v2h1V9h2V8z"></path>
</svg></li-icon>
<span class="artdeco-button__text">
Contact
</span></button>
<!--DD adds-->
<span>
<h1 class="text-heading-xlarge inline t-24 v-align-middle break-words">phone 781-5264853</h1>
</span>
<h1 class="text-heading-xlarge inline t-24 v-align-middle break-words">email: ndidkovskij9@gmail.com</h1>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<div style="display: none" class="entry-point pvs-profile-actions__action
">
<div></div>
<button aria-label="Message Nikolai" id="ember1634" class="artdeco-button artdeco-button--2 artdeco-button--secondary ember-view"> <li-icon aria-hidden="true" type="locked" class="artdeco-button__icon" size="small"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" data-supported-dps="16x16" fill="currentColor" class="mercado-match" width="16" height="16" focusable="false">
<path d="M12 6V5a4 4 0 00-8 0v1a2 2 0 00-2 2v5a2 2 0 002 2h8a2 2 0 002-2V8a2 2 0 00-2-2zm-3 6H7V9h2zM6 6V5a2 2 0 014 0v1z"></path>
</svg></li-icon>
<span class="artdeco-button__text">
Message
</span></button>
</div>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<div style="display: none" id="ember1520" class="artdeco-dropdown artdeco-dropdown--placement-bottom artdeco-dropdown--justification-right ember-view">
<button aria-expanded="false" aria-label="More actions" id="ember1521" class="artdeco-dropdown__trigger artdeco-dropdown__trigger--placement-bottom ember-view pvs-profile-actions__action artdeco-button artdeco-button--secondary artdeco-button--muted
artdeco-button--1
artdeco-button--circle
" type="button" tabindex="0">
<li-icon aria-hidden="true" type="overflow-web-ios" size="small"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" data-supported-dps="16x16" fill="currentColor" class="mercado-match" width="16" height="16" focusable="false">
<path d="M3 9.5A1.5 1.5 0 114.5 8 1.5 1.5 0 013 9.5zM11.5 8A1.5 1.5 0 1013 6.5 1.5 1.5 0 0011.5 8zm-5 0A1.5 1.5 0 108 6.5 1.5 1.5 0 006.5 8z"></path>
</svg></li-icon>
<!----></button>
<div tabindex="-1" aria-hidden="true" id="ember1522" class="pvs-overflow-actions-dropdown__content artdeco-dropdown__content artdeco-dropdown--is-dropdown-element artdeco-dropdown__content--justification-right artdeco-dropdown__content--placement-bottom ember-view"><div class="artdeco-dropdown__content-inner">
<ul>
<li>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<div aria-label="Send Nikolai Didkovski’s profile via message" role="button" id="ember1523" class="artdeco-dropdown__item artdeco-dropdown__item--is-dropdown ember-view full-width display-flex align-items-center" tabindex="0"><!---->
<li-icon aria-hidden="true" type="share-linkedin" class="mr3 flex-grow-0" size="large"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mercado-match" width="24" height="24" focusable="false">
<path d="M23 12l-4.61 7H16l4-6H8a3.92 3.92 0 00-4 3.84V17a4 4 0 00.19 1.24L5.12 21H3l-.73-2.22A6.4 6.4 0 012 16.94 6 6 0 018 11h12l-4-6h2.39z"></path>
</svg></li-icon>
<span class="display-flex t-normal flex-1" aria-hidden="true">
Send profile in a message
</span>
</div>
</li>
<li>
<!---->
<!---->
<!---->
<!---->
<!---->
<div aria-label="Save Nikolai Didkovski’s profile to PDF" role="button" id="ember1524" class="artdeco-dropdown__item artdeco-dropdown__item--is-dropdown ember-view full-width display-flex align-items-center" tabindex="0"><!---->
<li-icon aria-hidden="true" type="download" class="mr3 flex-grow-0" size="large"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mercado-match" width="24" height="24" focusable="false">
<path d="M21 14v5a3 3 0 01-3 3H6a3 3 0 01-3-3v-5h2v5a1 1 0 001 1h12a1 1 0 001-1v-5zm-4-.57V11l-4 2.85V3h-2v10.85L7 11v2.43L12 17z"></path>
</svg></li-icon>
<span class="display-flex t-normal flex-1" aria-hidden="true">Save to PDF</span>
</div>
<!---->
<!---->
<!---->
<!---->
<!---->
</li>
<li>
<!---->
<div aria-label="Follow Nikolai Didkovski" role="button" id="ember1525" class="artdeco-dropdown__item artdeco-dropdown__item--is-dropdown ember-view full-width display-flex align-items-center" tabindex="0"><!---->
<li-icon aria-hidden="true" type="add" class="mr3 flex-grow-0" size="large"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mercado-match" width="24" height="24" focusable="false">
<path d="M21 13h-8v8h-2v-8H3v-2h8V3h2v8h8z"></path>
</svg></li-icon>
<span class="display-flex t-normal flex-1" aria-hidden="true">Follow</span>
</div>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
</li>
<li>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
</li>
<li>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<div aria-label="Report or block Nikolai Didkovski’s profile" role="button" id="ember1526" class="artdeco-dropdown__item artdeco-dropdown__item--is-dropdown ember-view full-width display-flex align-items-center" tabindex="0"><!---->
<li-icon aria-hidden="true" type="report" class="mr3 flex-grow-0" size="large"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mercado-match" width="24" height="24" focusable="false">
<path d="M17.9 4.38a5.82 5.82 0 01-1.9.31 6.1 6.1 0 01-1.9-.31l-3.2-1.07A6.41 6.41 0 009 3a5.57 5.57 0 00-1.9.31L6 3.67V2H4v20h2v-8l1.1-.37a6.41 6.41 0 011.9-.32 5.82 5.82 0 011.9.31l3.2 1.07a6 6 0 003.8 0L20 14V3.68z"></path>
</svg></li-icon>
<span class="display-flex t-normal flex-1" aria-hidden="true">Report / Block</span>
</div>
<!---->
<!---->
<!---->
</li>
<li>
<div role="button" id="ember1527" class="display-flex align-items-center full-width artdeco-dropdown__item artdeco-dropdown__item--is-dropdown ember-view" tabindex="0"><!---->
<li-icon aria-hidden="true" type="signal-notice" class="mr3 flex-grow-0" size="large"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mercado-match" width="24" height="24" focusable="false">
<path d="M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3zm-4 15h-1a3 3 0 01-3-3 3.22 3.22 0 01.1-.75L11.2 10h2.07L12 14.75A1 1 0 0013 16h1zm-1-9.75A1.25 1.25 0 1114.25 7 1.25 1.25 0 0113 8.25z"></path>
</svg></li-icon>
<span class="display-flex t-normal flex-1" aria-hidden="true">About this profile</span>
<span class="a11y-text" aria-live="off">About this profile</span>
</div>
<!---->
</li>
</ul>
</div>
</div>
</div>
</div>
<!---->
<!---->
</div>
<!---->
</div>
<div id="profile-sticky-header-toggle"></div>
<!----></section>
<!---->
<!----> <!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<section id="ember1528" class="artdeco-card ember-view relative break-words pb3 mt2
" tabindex="-1"><!---->
<div id="about" class="pv-profile-card__anchor">
</div>
<!---->
<div class="pvs-header__container">
<div class="pvs-header__top-container--no-stack">
<div class="pvs-header__left-container--stack">
<div class="pvs-header__title-container">
<h2 class="pvs-header__title
text-heading-large">
<span aria-hidden="true"><!---->About<!----></span><span class="visually-hidden"><!---->About<!----></span>
</h2>
<!----><!----> </div>
<!----> </div>
<!----> </div>
</div>
<div class="display-flex ph5 pv3">
<div class="
display-flex full-width" data-generated-suggestion-target="urn:li:fsu_profileActionDelegate:52961829">
<!--DD Changed-->
<div class="">
<div class="" style="-webkit-line-clamp:4;" tabindex="-1">
<span aria-hidden="true"><!---->The detail-oriented and results-driven analyst who excels at performing data collection and analysis and conducting detailed reports.<span class="white-space-pre"> </span><br><!---->Intermediate knowledge of insurance and financial products, pricing models, coverages, endorsements, forms, cancellation and conditional renewal requirements and terms.<!----><br><!---->Performs work accurately, timely, and with only moderate supervision.<!----><br><!---->Effective in data analytics, from data cleaning and wrangling to building visualizations and making conclusions.<span class="white-space-pre"> </span><br><!---->Critical thinking and problem solving, decision making, detail orientation, customer focus, written/verbal communications, adaptability, courtesy, dependability and ability to learn/apply new information quickly and accurately.<!----><br><!---->Proficiency in Excel, and PowerPoint. Intermediate knowledge of SQL, Python, and Power BI.<span class="white-space-pre"> </span><br><!---->Currently looking for analyst full-time or part-time position (Boston area preferable, might consider relocation)<!----></span><span class="visually-hidden"><!---->The detail-oriented and results-driven analyst who excels at performing data collection and analysis and conducting detailed reports.
Intermediate knowledge of insurance and financial products, pricing models, coverages, endorsements, forms, cancellation and conditional renewal requirements and terms.
Performs work accurately, timely, and with only moderate supervision.
Effective in data analytics, from data cleaning and wrangling to building visualizations and making conclusions.
Critical thinking and problem solving, decision making, detail orientation, customer focus, written/verbal communications, adaptability, courtesy, dependability and ability to learn/apply new information quickly and accurately.
Proficiency in Excel, and PowerPoint. Intermediate knowledge of SQL, Python, and Power BI.
Currently looking for analyst full-time or part-time position (Boston area preferable, might consider relocation)<!----></span>
<span class="inline-show-more-text__link-container-collapsed">
<!----> <button class="inline-show-more-text__button
inline-show-more-text__button--light
link" aria-expanded="false" type="button">
</button>
</span>
<!----></div>
</div>
</div>
</div>
<!----> </section>
<!---->
<!---->
<!---->
<section id="ember1529" class="artdeco-card ember-view relative break-words pb3 mt2
" tabindex="-1"><!---->
<div id="recent_activity" class="pv-profile-card__anchor">
</div>
<!---->
<div class="pvs-header__container">
<div class="pvs-header__top-container--no-stack">
<div class="pvs-header__left-container--stack">
<div class="pvs-header__title-container">
<h2 class="pvs-header__title
text-heading-large">
<span aria-hidden="true"><!---->Activity<!----></span><span class="visually-hidden"><!---->Activity<!----></span>
</h2>
<p class="pvs-header__subtitle pvs-header__optional-link text-body-small">
<span aria-hidden="true"><!---->4 followers<!----></span><span class="visually-hidden"><!---->4 followers<!----></span>
</p>
<!----> </div>
<!----> </div>
<!----> </div>
</div>
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="artdeco-list__item pvs-list__item--line-separated pvs-list__item--one-column">
<!----><div class="pvs-entity
pvs-entity--padded pvs-list__item--no-padding-in-columns
">
<div>
<div class="
display-flex" tabindex="-1" aria-hidden="true">
<!----><!---->
</div>
</div>
<div class="display-flex flex-column full-width align-self-center">
<div class="display-flex flex-row justify-space-between">
<div class="
display-flex flex-column full-width">
<div class="display-flex flex-wrap align-items-center full-height">
<span class="mr1 t-bold">
<span aria-hidden="true"><!---->Nikolai<!----><span class="white-space-pre"> </span>hasn't posted lately yet<!----></span><span class="visually-hidden"><!---->Nikolai<!----><span class="white-space-pre"> </span>hasn't posted lately<!----></span>
</span>
<!----><!----><!----> </div>
<span class="t-14 t-normal">
<span aria-hidden="true"><!---->Nikolai’s recent posts and comments will be displayed here.<!----></span><span class="visually-hidden"><!---->Nikolai’s recent posts and comments will be displayed here.<!----></span>
</span>
<!----><!---->
</div>
<!---->
<div class="pvs-entity__action-container">
<!----> </div>
</div>
<!----> </div>
</div>
</li>
</ul>
<div class="pvs-list__footer-wrapper">
<div class="">
<a class="optional-action-target-wrapper artdeco-button artdeco-button--tertiary artdeco-button--standard artdeco-button--2 artdeco-button--muted
inline-flex justify-center full-width align-items-center artdeco-button--fluid
" target="_self" id="navigation-index-see-all-recent-activity-null-state" href="https://www.linkedin.com/in/nikolai-didkovski-2848a2253/recent-activity/">
<!----> <span class="pvs-navigation__text">
Show all activity
</span>
<div class="pvs-navigation__icon">
<li-icon aria-hidden="true" type="arrow-right" size="small"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="mercado-match" data-supported-dps="16x16" fill="currentColor" width="16" height="16" focusable="false">
<path d="M11.45 3L15 8l-3.55 5H9l2.84-4H2V7h9.84L9 3z"></path>
</svg></li-icon>
</div>
</a>
</div>
</div>
</div>
<!----> </section>
<!---->
<section id="ember1530" class="artdeco-card ember-view relative break-words pb3 mt2
" tabindex="-1"><!---->
<div id="experience" class="pv-profile-card__anchor">
</div>
<!---->
<div class="pvs-header__container">
<div class="pvs-header__top-container--no-stack">
<div class="pvs-header__left-container--stack">
<div class="pvs-header__title-container">
<h2 class="pvs-header__title
text-heading-large">
<span aria-hidden="true"><!---->Experience<!----></span><span class="visually-hidden"><!---->Experience<!----></span>
</h2>
<!----><!----> </div>
<!----> </div>
<!----> </div>
</div>
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="artdeco-list__item pvs-list__item--line-separated pvs-list__item--one-column">
<!----><div class="pvs-entity
pvs-entity--padded pvs-list__item--no-padding-in-columns
">
<div>
<a data-field="experience_company_logo" class="optional-action-target-wrapper
display-flex" target="_self" tabindex="-1" aria-hidden="true" href="https://www.linkedin.com/search/results/all/?keywords=MTS+Bank">
<!---->
<div class="ivm-image-view-model pvs-entity__image ">
<div class="ivm-view-attr__img-wrapper ivm-view-attr__img-wrapper--use-img-tag display-flex
">
<div class="EntityPhoto-square-3-ghost-company ivm-view-attr__ghost-entity ">
<!----> </div>
</div>
</div>
</a>
</div>
<div class="display-flex flex-column full-width align-self-center">
<div class="display-flex flex-row justify-space-between">
<div class="
display-flex flex-column full-width">
<div class="display-flex flex-wrap align-items-center full-height">
<span class="mr1 t-bold">
<span aria-hidden="true"><!---->Product Analyst<!----></span><span class="visually-hidden"><!---->Product Analyst<!----></span>
</span>
<!----><!----><!----> </div>
<span class="t-14 t-normal">
<span aria-hidden="true"><!---->MTS Bank · Full-time<!----></span><span class="visually-hidden"><!---->MTS Bank · Full-time<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Feb 2022 - Jul 2022 · 6 mos<!----></span><span class="visually-hidden"><!---->Feb 2022 - Jul 2022 · 6 mos<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Moscow, Russia<!----></span><span class="visually-hidden"><!---->Moscow, Russia<!----></span>
</span>
</div>
<!---->
<div class="pvs-entity__action-container">
<!----> </div>
</div>
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="pv-shared-text-with-see-more full-width t-14 t-normal t-black display-flex align-items-center">
<div class="" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><!---->● Created reports to monitor sales funnel, transaction revenue, and product sales<!----><br><!---->● Analysis and reporting on company products, sales funnel, and customer activity in Power BI and Tableau<!----><br><!---->● Used SQL to calculate customer metrics: churn, activity, and bank product sales<!----></span><span class="visually-hidden"><!---->● Created reports to monitor sales funnel, transaction revenue, and product sales
● Analysis and reporting on company products, sales funnel, and customer activity in Power BI and Tableau
● Used SQL to calculate customer metrics: churn, activity, and bank product sales<!----></span>
<span class="inline-show-more-text__link-container-collapsed">
<!----> <button class="inline-show-more-text__button
inline-show-more-text__button--light
link" aria-expanded="false" onclick="location.href='https://www.linkedin.com/in/nikolai-didkovski-2848a2253/'" type="button">
…see more
</button>
</span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="pv-shared-text-with-see-more full-width t-14 t-normal t-black display-flex align-items-center">
<div class="" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Microsoft Excel · Analytical Skills · Data Analysis<!----></span><span class="visually-hidden"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Microsoft Excel · Analytical Skills · Data Analysis<!----></span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
</ul>
<!----></div>
</div>
</div>
</li>
<li class="artdeco-list__item pvs-list__item--line-separated pvs-list__item--one-column">
<!----><div class="pvs-entity
pvs-entity--padded pvs-list__item--no-padding-in-columns
">
<div>
<a data-field="experience_company_logo" class="optional-action-target-wrapper
display-flex" target="_self" href="https://www.linkedin.com/company/1347312/">
<!---->
<div class="ivm-image-view-model pvs-entity__image ">
<div class="ivm-view-attr__img-wrapper ivm-view-attr__img-wrapper--use-img-tag display-flex
">
<!----> <img width="48" src="https://media.licdn.com/dms/image/C4E0BAQG7xPGZZSFbgw/company-logo_100_100/0/1604668078556?e=1688601600&v=beta&t=lzMMsGkOBV7-n8c8c5vG4eCTNbVci-PyWiZhwl8KY3I" loading="lazy" height="48" alt="Raiffeisen Bank International AG logo" id="ember1531" class="ivm-view-attr__img--centered EntityPhoto-square-3 lazy-image ember-view">
</div>
</div>
</a>
</div>
<div class="display-flex flex-column full-width align-self-center">
<div class="display-flex flex-row justify-space-between">
<div class="
display-flex flex-column full-width">
<div class="display-flex flex-wrap align-items-center full-height">
<span class="mr1 t-bold">
<span aria-hidden="true"><!---->Product and Insurance Specialist<!----></span><span class="visually-hidden"><!---->Product and Insurance Specialist<!----></span>
</span>
<!----><!----><!----> </div>
<span class="t-14 t-normal">
<span aria-hidden="true"><!---->Raiffeisen Bank International AG · Full-time<!----></span><span class="visually-hidden"><!---->Raiffeisen Bank International AG · Full-time<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Jul 2021 - Oct 2021 · 4 mos<!----></span><span class="visually-hidden"><!---->Jul 2021 - Oct 2021 · 4 mos<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Moscow, Russia<!----></span><span class="visually-hidden"><!---->Moscow, Russia<!----></span>
</span>
</div>
<!---->
<div class="pvs-entity__action-container">
<!----> </div>
</div>
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="pv-shared-text-with-see-more full-width t-14 t-normal t-black display-flex align-items-center">
<div class="" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><!---->● Created reports for leasing business unit<!----><br><!---->● Calculated insurance premiums using Excel<!----><br><!---->● Insurance policy information adjustments<!----><br><!---->● Developed analytical reports on insurance products in SQL, Power BI, and Tableau<!----><br><!---->● Negotiated with customers on the basic conditions of insurance policies<!----></span><span class="visually-hidden"><!---->● Created reports for leasing business unit
● Calculated insurance premiums using Excel
● Insurance policy information adjustments
● Developed analytical reports on insurance products in SQL, Power BI, and Tableau
● Negotiated with customers on the basic conditions of insurance policies<!----></span>
<span class="inline-show-more-text__link-container-collapsed">
<!----> <button class="inline-show-more-text__button inline-show-more-text__button--light link __web-inspector-hide-shortcut__" aria-expanded="false" type="button">
…see more
</button>
</span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="">
<div class="" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Presentation Skills · Reporting & Analysis · Interpersonal Communication · Financial Analysis · Microsoft Excel · Microsoft Power BI · Tableau · SQL · Analytical Skills · Data Analysis<!----></span><span class="visually-hidden"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Presentation Skills · Reporting & Analysis · Interpersonal Communication · Financial Analysis · Microsoft Excel · Microsoft Power BI · Tableau · SQL · Analytical Skills · Data Analysis<!----></span>
<span class="inline-show-more-text__link-container-collapsed __web-inspector-hide-shortcut__">
<!----> <button class="inline-show-more-text__button
inline-show-more-text__button--light
link" aria-expanded="false" type="button">
…see more
</button>
</span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
</ul>
<!----></div>
</div>
</div>
</li>
<li class="artdeco-list__item pvs-list__item--line-separated pvs-list__item--one-column">
<!----><div class="pvs-entity
pvs-entity--padded pvs-list__item--no-padding-in-columns
">
<div>
<a data-field="experience_company_logo" class="optional-action-target-wrapper
display-flex" target="_self" href="https://www.linkedin.com/company/29370/">
<!---->
<div class="ivm-image-view-model pvs-entity__image ">
<div class="ivm-view-attr__img-wrapper ivm-view-attr__img-wrapper--use-img-tag display-flex
">
<!----> <img width="48" src="https://media.licdn.com/dms/image/C560BAQH0l8Vyh1Vbiw/company-logo_100_100/0/1519856614316?e=1688601600&v=beta&t=6Vsg5w70gRhjoKz6jYh_hcAflcB3gc-3-KEZt2ks5fE" loading="lazy" height="48" alt="Rosgosstrakh logo" id="ember1532" class="ivm-view-attr__img--centered EntityPhoto-square-3 lazy-image ember-view">
</div>
</div>
</a>
</div>
<div class="display-flex flex-column full-width align-self-center">
<div class="display-flex flex-row justify-space-between">
<div class="
display-flex flex-column full-width">
<div class="display-flex flex-wrap align-items-center full-height">
<span class="mr1 t-bold">
<span aria-hidden="true"><!---->Intern<!----></span><span class="visually-hidden"><!---->Intern<!----></span>
</span>
<!----><!----><!----> </div>
<span class="t-14 t-normal">
<span aria-hidden="true"><!---->Rosgosstrakh · Full-time<!----></span><span class="visually-hidden"><!---->Rosgosstrakh · Full-time<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Apr 2021 - Jun 2021 · 3 mos<!----></span><span class="visually-hidden"><!---->Apr 2021 - Jun 2021 · 3 mos<!----></span>
</span>
<span class="t-14 t-normal t-black--light">
<span aria-hidden="true"><!---->Moscow, Russia<!----></span><span class="visually-hidden"><!---->Moscow, Russia<!----></span>
</span>
</div>
<!---->
<div class="pvs-entity__action-container">
<!----> </div>
</div>
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="pv-shared-text-with-see-more full-width t-14 t-normal t-black display-flex align-items-center">
<div class="" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><!---->● Insurance premium calculation<!----><br><!---->● Drawing up of insurance policies<!----><br><!---->● Analysed property insurance policies<!----></span><span class="visually-hidden"><!---->● Insurance premium calculation
● Drawing up of insurance policies
● Analysed property insurance policies<!----></span>
<span class="inline-show-more-text__link-container-collapsed">
<!----> <button class="inline-show-more-text__button inline-show-more-text__button--light link __web-inspector-hide-shortcut__" aria-expanded="false" type="button">
…see more
</button>
</span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
<li class=" ">
<div class="pvs-list__outer-container">
<!----> <ul class="pvs-list
">
<li class="pvs-list__item--with-top-padding ">
<div class="display-flex ">
<div class="
display-flex full-width">
<div class="pv-shared-text-with-see-more full-width t-14 t-normal t-black display-flex align-items-center">
<div class="inline-show-more-text
inline-show-more-text--is-collapsed
inline-show-more-text--is-collapsed-with-line-clamp
full-width" style="-webkit-line-clamp:2;" tabindex="-1">
<span aria-hidden="true"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Financial Analysis · Microsoft Excel · Business Analysis · Analytical Skills · Data Analysis<!----></span><span class="visually-hidden"><strong><!---->Skills:<!----></strong><span class="white-space-pre"> </span>Financial Analysis · Microsoft Excel · Business Analysis · Analytical Skills · Data Analysis<!----></span>
<span class="inline-show-more-text__link-container-collapsed">
<!----> <button class="inline-show-more-text__button inline-show-more-text__button--light link __web-inspector-hide-shortcut__" aria-expanded="false" type="button">
…see more
</button>
</span>
<!----></div>
</div>
</div>
</div>
</li>
</ul>
<!----></div>
</li>
</ul>
<!----></div>
</div>
</div>
</li>
<li class="artdeco-list__item pvs-list__item--line-separated pvs-list__item--one-column">
<!----><div class="pvs-entity
pvs-entity--padded pvs-list__item--no-padding-in-columns
">
<div>
<a data-field="experience_company_logo" class="optional-action-target-wrapper
display-flex" target="_self" href="https://www.linkedin.com/company/6132/">
<!---->
<div class="ivm-image-view-model pvs-entity__image ">
<div class="ivm-view-attr__img-wrapper ivm-view-attr__img-wrapper--use-img-tag display-flex
">
<!----> <img width="48" src="https://media.licdn.com/dms/image/C4D0BAQFJih8uKRbTbw/company-logo_100_100/0/1637244802027?e=1688601600&v=beta&t=zU6REyZO7_yw2ByQ3neKMVXF6mBoq8JuIM9NFwKvWWk" loading="lazy" height="48" alt="beeline Russia logo" id="ember1533" class="ivm-view-attr__img--centered EntityPhoto-square-3 lazy-image ember-view">
</div>
</div>
</a>
</div>
<div class="display-flex flex-column full-width align-self-center">
<div class="display-flex flex-row justify-space-between">
<div class="
display-flex flex-column full-width">
<div class="display-flex flex-wrap align-items-center full-height">