forked from valor-software/valor-software.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscully.log
1722 lines (887 loc) · 378 KB
/
scully.log
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
handleUnknownRoute: "/assets/articles/scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform/60d445d24897dc4086b2c80f_Blog-Scully.png", 404:""
handleUnknownRoute: "/assets/articles/scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform/60d445d24897dc4086b2c80f_Blog-Scully.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""handleUnknownRoute: "/assets/articles/diving-into-seeking-issue-with-mp3-files/61fbaed8a4291dddcee69278_Frame_20301.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform/60d445d24897dc4086b2c80f_Blog-Scully.png", 404:""
handleUnknownRoute: "/assets/articles/scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform/60d445d24897dc4086b2c80f_Blog-Scully.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/implementing-websockets-plugin-for-nativescript-using-react-native/624495a97b77ab1729aaf5ad_Implementing_20WebSockets_20plugin_20for_20NativeScript_20using_20React_20Native.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576%20(1).JPG", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576.JPG", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/5e95749bd8501a80256ffab0_IMG_4576.JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576.JPG", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5e95749bd8501a80256ffab0_IMG_4576.JPG", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1e179ca5c5487ce23_wIU_4DfFrUMKTwmIM7qoJSGOR9zFJT8xS0FXJz3_flyDEYSOWyN137EA2lJmuPI4s2Mw7daOOl_g0QfYvvJMZqQtWPvKwKyClFUjdyA3Bvc59tEEKDliYDnUABlaSQm-IVntwATa.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da141480acf2ab8f9d4_ffCbT9ZWavqT3EnWuEmoblsHmGseY8uqtM8CndDGIgmdy-2oWNMFrfKu8fuAZNddYwzskMn1suqfaCkQeVepV1hrbDdT6hL50W5_EP1rfk4AGE6bV5vPJbz5aqhe3y4sJWuXTZ5J.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da25c702f8d7932f10a_4VQSX6wMY9roBktyIlD8TFERsNjpn-wDevjm5TMZQtCvpqXlOtm8qMaoaU0QKgcBQ8JwDL1xUL7IlTgx4BAz1CVLC0otC6MbX6PrSaY0DxDlJPupEO_uoPaB02gU2p0S3MP2_bW4.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da269768da8652a4b39__rGoPEGzFyxyZfRxAPaAsAgFeer9ZjcXrmZQBXODWWNeRWCQBS7X6MaaQL6eoMNTZiAVh0BWZ-HmDJBSyu696jhvp20ybhR8cz35roiIbOu-Af-RIbTi2Wy4EXb_XyC4NpfpcpNM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da150972d7e426336cc_sWeKBHf3Sucw3O2yDL9Hz0LNZRp9xs9undm-ScSGZXJa9b4vMHOnYWq9NJM9rayLLzukqeRyLvqRLBa0wMFdVG3YCdgnRm5TNreMxir-OpzbZLcnSKN__GfJbj9ZUBdJLtlZumez.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da22add8d19a1319043_Z3CqftxBaSp5UAk4auW7R0_3SZPh54GMlwAX5deX21wuhB-VOQjn-p7vKfn33DKQwbyQ6g3RsDHqF7vx_EkA8x-nPnnkOX9epjEcmDLJj4xh3oh05cWtsV9z2RsHooALYKAcN_E3.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da1de3f7057cde5ffda_ipDUDgMKrmu9YCYviBAJg5qmOQIjC6CACi2s4pEtTrmRYGcN5TlgaNbCVzQ3k2msXX6skGxkn8v-bD7rfLsm1TBIkN7PlCCGuNwz3rp56i-XL44StyIyx_7EhMKzJlev6_3QKJrw.png", 404:""
handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2ef0245316890163b_cDFHUZwHZoaS-NMMRKBTJ8xfS5s7-4Hah3s-nW4ajFoIwcTMt1BS11ZHMHFnrK1pbXXb382dtcJoA-cT9pjUrNNezn5WKGf8Mb5FQPvIRVQj1gSO2QeGebJ5WvzWvjbtKKOiApAD.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da2fa45d01b8d8eea65_gk8HsgxR5pkEkZPja5L00dmGwEV4bAImkUIXjBEUEg8csKO1p2z69xz3tJCrNzS5HPtND3DHTX0008HVwzM5YHZKjuacOWr1JmD8_DMmmAx_xXr_9OM5_P5-NTzQYDD4gcu-OZnk.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f366da33bea2a7a56161e53_hxunvZOnEKcFVPiMzrLx-EBdYsyOYwtgCL70MhI3FnOw4ZFvuRnm6Sz4vittiPCOr0WzOV60dRycPJxvgls9NYs-GlUBFAbEKeCY-or9gEUKDgwP_ExOLwurHEN1gFpkXPKxy2nM.png", 404:""handleUnknownRoute: "/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/assets/articles/cross-site-scripting-xss-a-qa-engineers-guide/5f3a386d18ce2431beea9182_Screenshot%20(4).png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9522e72386a3d109_D-zJVfpIrJ-Ji17cz4XsxFhXbJ7M6u0l9t-0fnzVVEN_O9HqCLyb-kzVV9PD3VQepkw2G6MmVTIidM6kTZ_-qbQVrLppqWNrV0pue1FyXWgkgwdE1sjVb6ZFp8WM_hFEBmnwSc_5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6e2fec8556e02f3341_T30FMx7gF5n-sSnAg81DpPmcLju5wKNKl5U0YeDyuuaAG4UZDqI9iL7VaM5kZuQ6WUSxzzgDLibThgVfo3fg7qZvbXBsRstL6L9epE3LUIE1Q-CwZPHPWGxE9jONVo_VivhLKd__.gif", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6a9fe97358c72813ef_7GCuS1cbD_HahA8YFMkdU9pSjr-FUebYprhgkReozezZK40LXqzasa-MPAio_CUxUWnLi6VkfdoM6BZVHDVViAdvcdVn5aNAq31H_b-BYbwwyDseMAr7MDRHiXImdle3NfPFwht5.png", 404:""handleUnknownRoute: "/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/assets/articles/json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/5e456e6af2cbe27e2f88d6f1_mYVaqA9S2g77V5DwY2sja-yotNBM2pJDALNDYSVigOqZYnt7sNHxd8B2eelr1SgU1BBVATuX_65zyAQ4suSOmxnpvxedaGtUCFFmkGgfr8wVHcUQ1R3qzTSdAnpJ_tjynPuL7C08.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e04c0bc52e2d0735d7730cc_Un82qXnMJHP0THO6PSv_ImjUGJDt6ZNbEOgJmuHu8b0V_hleFx1bqfhD4SgxZrtJQvurPfUJQ9vNwEhYcGPuX0RoOBofNNS3rBMp9vBxtrKGvzDtpSnp0juSG374BoyitMdyauTi.png", 404:""
handleUnknownRoute: "/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/assets/articles/testing-ios-app-vulnerabilities-with-jailbreaking-part-1/5e05dd1e664aac73888e0226_58uC6tNAESc-hiTunvY2fsvyiY9m8DnXzaYf9OWrFCWRpFbymokaOokXfJzAXRtc_C_ZSGRBJVR3PKDbzX6r6lsprKQow9rmLi3EF2b-hZEcGoKSTJrJPpvKrLB2TJa7jcuwEUSh.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2bf3f25ffeeac9db6_ycPB1w3I9Oj89iS2E3de_SUHDi-8CYHE2c-fLcsYl27_u5amPG8zpI2bOD3OBgkexkdGV7QU3OHT6Rv01mnzXUHbH45j3gxK5VOdVnfkEl-01-lNBDPwuT71dV0wcjDgQWL061O-.png", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d224feeb3789694282_Rw-EGmi5vTrDtEREArPvdlC4WtZ2L7EGwn6bcxWBRAQ_4eivB_hlMDEwCVCMPED9fjj9WFZFni5MSsy5iX8--NzjgX9nFcBx_YozBgMumpDruvdixbh0_4Vtu4TBqzO2sPZbw63v.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d25d76df2fc42afd0c_GRBSY8CpQmtX6sErtOTiN8pg_lu3POPAiR2LhlFbY7NrIX83xTd_V5p4guVFWxWOF9eCWxjdBFTM86WzMg642VgXaWEJsqWWTbfVzg6kgTSyDNbsHP4Z5W5ntFqzFefRRPGc0jiP.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3cd25be0e65b6491d_BQeHyltAqTs5jzqYgjqS3qroTF4zLmhAZ3cp5DM1KeMhxg5zTFO1zAxcx6Rf52Fij8CgOCm0_xQg2JzYDHyi7K-QBFPxxWUbpTFrAm2vTtbF6vNweRQb69qGDUpVo1u3qhTtHEM4.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d2df0bf0020fff0759_Rd46BgSYvkjqM_kCLOXosgvdmJqQRuWSayixGSCC_8V0_ZdyozE0HwcQfPii9xXoeaRR7qt9GVgftJCIgxgRqCBswmlkuqJOlbRXDEjobtvzBPnJ_JDZfDrm2OALrglWH3YdwsGU.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d20ff52bfc9267396c_i9Ym3iok2mdBpfB6Y6Zbhwu1l_I3fIzD4IwnEAxoaoKpDr6R7qCLQzy3XcjqhKEmdH8GXoFyKyxAEhwlECBVGWZcDMUph7RbdjID8vO__l68HoloNwm1uqqPJQJFxV-_gsn8SKrZ.png", 404:""handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d3bf3f25d111ac9dc7_YhJ5X3uQsyMbK51G4KbE5UpxaD58asz8sKeqB6Rz6ZvpmLneXJuf-cH4Pzdh_VxRd-5Qk1C2tU-0YkDsiMN5AKaR4xHrNXqVgUOubsixkIytbPgcbicx3nnOSM_xq-wBXHdElOoZ.jpeg", 404:""
handleUnknownRoute: "/assets/articles/benefits-of-agile-to-business-and-team/assets/articles/benefits-of-agile-to-business-and-team/5ddfd2d35d76df42db2afd27_-Ie_tV6ycvHuv9TGENhoK3XfxcKPCudii1uIA6dM-5VnST1UTDdjmeEfg6cPXWFo7pBiV5le3VUVMBcN_wU08RikJJHwi97L-O0APfFYP3v6xnsxstO6Sx6u4okQ3_A3qX3Udnm8.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/assets/articles/valor-software-named-top-development-company-in-ukraine-by-clutch/5dc42fcf2131733a4d7d8b27_Sl79qTteC-5fLxp8fiFNwABLEcbOTecNposoV4trj7fiyYwrBzvkolgIUyrct5p7s8YZdZzAQ2yLWMgcULu9J5wf9YYA-CJWEOANWw3XDqROawcgCu9e3mdHU0eKMlf7gNsRaPkD.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dd4a0f1c21c1926af7_kz-lK5fm2CcE0VGpreZj4UUOYw_-9r4ROFqU_WOmi5LEpBmRcF2Ax7BnBfCaxnlVMy9yj2dK0OuvQM9BKNQGzA2-eDQ8jO3joJpFAuEHvDtE26tYAzn8kZHY8Yb8IaaDnSNDdinF.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddbc81e32fb3e0380b_RouzTqU99ipGZthlSnjHmih9bTrnQRrfA9_UdXbl9oWCb6hJgIlFZJVRrl0yL4y7Q0ncsMOtCnWJZv0m2SNp1ImWHp0KPdWj8md6Zz5YN155AAW3L_m29DDuAv566qXK6y2VHMQ4.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2ddd7ccc682175962ea_f27J06AkBW3Dd3pB4fanZWw1sbrhcs-GJCI5H3DgSK_U2R2cbRSAY_-3hTCe75DQU9iMPJpWnJJlSLra_yAyKtPmzmyeUlGVIVlTj2do6t_Y1za0aYfDaTVc8bR6yFgEwNIQ1ZXM.jpeg", 404:""handleUnknownRoute: "/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/assets/articles/hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/5d91e2dde6b25800bd2cb938_HzA39vKZa4R59B7CU-w4NXuLeiGYiiVztK34IXE4r-hVcWPU2WBF2sBi7-7GFaC3g1GcYHiOxqJ4_wLO1OZ_1v9dOaMwNjY8KNVLUjmEe29KPJqyTZfDOCUl3fW-GLql2XeIh2QK.jpeg", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55c5dc92ececbab582_YDoHhsL8jJs4yJ183udqYIxYeVFlyMtLgo9KHP5w3wZMMZuGuEvf9yy7Kqkoj_Sf68H3G3DYoqJ3Xe-d49LBv6I-t1ydWpxUPXlq4BxY2iuIqcFMPAsJ6Ih-VjJLwDKoBc5GPkAw.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55f504968a773a9d1c_wQV3zvuCMP-QZ72OuYpN6HM4TibMNwxnCiF2JRr9n8IBEe_WqxSdHspCs3MWKyqH8-X4QG4r2hNa3ZyZIBoR75uJDQUdiPCw9lMlvHDpKBrlXRqHDb4znUZJGIPzDO81CsL25ARE.png", 404:""handleUnknownRoute: "/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/assets/articles/the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/5d70ec55dc2d3b392dd943f4_pJ2v8MMK8OTVPX5BjMkjOtI2BFZWlS5CvR30cNW9tkinLTnJ_0fIBsRa-QSryfAylOCbd2O80s7CbwYSpPzmqyq5OmUpTbc_NttCYX_Q7zIaCarXadRAtMF5zKadxr5WTOGJ6rl8.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d307773875feb82a4abbd76_B7picOG_gPEf6oVRy3lCForWylnvxpUgEAcMS1emVJpvy3YAhYFxhpFQPZBD7tzhtiu4zFkz9eEebjtW2ySjXJq8skV2xWXeskgyXkBSydRpEfCWGizLEVBuVLKji9EdQ3muMaaA.jpeg", 404:""handleUnknownRoute: "/assets/articles/angular-and-seo-structured-data-for-rich-snippets/assets/articles/angular-and-seo-structured-data-for-rich-snippets/5d3077736324e975692f59e0_Pw6i3raF3cNFaBhI2QQa8I3_kAD6mTz6Umz8taS5kkvuSpamLx1EIYQqFIovzgHKLcpiOAx0JoPVPmolYxCmieStUbtQ5dRqNPDNyEHpWkmCKZ3fugWlsRTIF_8Na-X6jGZndDe0.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c6b794168f0_5d1b4eb3a694d6f8e4e182cb_01.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07bf797cb8713fa8134f_Compiled_to_ES5_Bundle_size_reduced_by_12%25.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72392b2ad29a97466cdb_2%202.jpg", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d79f13c359cbae4cdb_5d1b53cdd7f015f62ec40dc1_d_Qx-minEOXzUIRUx6_soj8vZPT6MpIA2ZqiXtiGp33GO91bqKKGbGvfAGg2pMu2U_5GANViNnqtqvAwUDyZBjfQqkaC1gwIu1bAmwikT_HwUi96oSFYoQvptdSAvEHOAX0Zzum5.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c7544df18299104edc263_es5.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7b994130b84396f2b_5d1b55ceaee43ccbd940ee57_Screenshot%2520from%25202019-06-29%252012-23-42%2520copy.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b07e167bbc72286749da7_Compiled_to_ES6_Bundle_size_reduced_by_13%25.png.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c72632087660b19d5e2d8_2%2003.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d8a884d4423e7328b6_5d1b5963a884d461f172f537_06.png", 404:""
handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1c74808da84273fa95f22d_es6.jpg", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d1b64d7aee43c167a4168f2_5d1b59dfd7f015b831c42c1a_08.png", 404:""handleUnknownRoute: "/assets/articles/ngx-bootstrap-angular-ivy-is-here/assets/articles/ngx-bootstrap-angular-ivy-is-here/5d3b08050038410d478da705_Gzipped_Compiled_to_ES5_Bundle_size_increased_by_2%25.png", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2bfebbfa1c94d95309544_ligature1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c0297065d90ea7ec6a14_ligature2.jpg", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c3d2f8fc0b1bce9f30c9_ligature3.gif", 404:""
handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c282f8fc0b6f9c9f2c25_mobile-scaling.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c30f578360a8346d8578_100vh.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c6d1316b12b03ad0c4a7_open-graph-1.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c7037065d98c9cec7dd1_open-graph-2.jpg", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd44050d94ad4128974fd0c_escbtn-sm.gif", 404:""handleUnknownRoute: "/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/assets/articles/webflow-custom-code-snippets-you-would-use-episode-1/5cd2c8ba578360ef956da542_custom-selection.jpg", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac9625b32e397fc8d542c3_VhINC-U1hfiJ6IpgLQk_y7PCGNprGcBeGOps1QdrRi2TaALTEDcLWwdRyMmZF0DrB4L6KlfESRBtvsfb-ui52gTxDT_B1fP9jwAtzM_748d75ZK2DfTpVazZicu1h5flRfmWzpGF.png", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac972bf94f986a6fd4a96d_RdepyyO.gif", 404:""handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac976c51b2296b29aec8aa_3WWv2qk.png", 404:""
handleUnknownRoute: "/assets/articles/testing-canvas-could-be-easier/assets/articles/testing-canvas-could-be-easier/5cac986cf94f9810c4d4ac0c_nRUcQAt.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab2e647177dc01b8d79c43_IaNO13CuCwBG6QvLn0cpMlOwcVqfi9TXLk_OMRojE1FGHdA2Ir-A8DqxNNJ08Qc3-mVo5mboraTgc6rffkffQm6F3yeFrd3BfshS7V04zrzoGYUnmpUofvrKpE5MYhWqRtPxhwi8.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab32d43be192e8aa80ebec_ATDeleG.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab3423f8e012b814e70c56_ECro61m.png", 404:""handleUnknownRoute: "/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/assets/articles/case-study-of-applitools-or-not-only-cypress-cross-browser-testing/5cab34427177dceb5bd7b918_YYUXA9z.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf052a0eec8bd2_6gbbCBMQJJGZrj88R1hGLshxFBeBx1lRlZEpDl4hGrLZ01HaLWEHcBK128_vFQv_v268Ozy1FDVen0u4-mPtIo_LcqijAnKfII0JNuu9cg5xjWMJAJG9-W18H6gaaJ3r-5r0Gl_U.jpeg", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce250092f31a_Qr2XbNuysNmCmCc-O7pkASSWrD2XV6HqCwS0Jdt5_2VRU4f7GFNCtYgVZppjIzDLfilNiMpyz96uj4vcknv9jyf3TGKT5OE6GWK_fMas2i1rwArS9bWGNk_-qOigVY02fpVEF7ex.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdcef92192f319_rSH4gTJRmYvo4O1wMoIEKyGc0VrH6N229rReu3gcp_hRRhCy0aVTrQ3npUGP3z9oy2cDN5BYYG3R4ZboruCVhZG680-U7Ps8cJfeh-F3DrTjFMcXkV_uWokgrSn_RuBVcDel3lA8.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693689cf383447eeb01c_YMGr3qyQTVESS7Xo5xiXxdNPOPErtV7u8WUi5KXc41TRnviAOPZ45ngZuLQ4R3z7uEqYNftesN0Ne03KS57tXX1PI1MLAJ7j_nF2vO9kADMLHsl-4j_Q9_7KJNpr_OQ2QWqvypLo.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977265430f1e1f1_Fh9FuO9iTcI-H3tbyigAoEt1QCgeYNkjGeFC9u9BPGcJ1CRlzEr5Mdtdv_1fUIGyjVORc0BsYyDeJeUlNHjdedO3QH9XW0pyf-ma6zOnEVWGT0NrXGbP1PBh0RJAODnMg6d3tXLd.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769363977266b6cf1e1f2_-HDTZ3ZHWITYnbRIA70wcVhK0bpX57ByJ8LBsJS3Oyt7Wk6LLmFPhC6kahrwoHA4ugK8eRl7ox_SzgqGzNcQrbnXsIAUHd70UR-HhS6lYuXdbEpbnWvrlQXrM9sdwh3gp1tSiUes.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769360adf050f74ec8bd4_J-xc6ZM_VWBj7WqIee8zviyVHwo5IxFvmTa2-k1UFn5_ZvEz6MQTHEZ4UrwWZG6cKx9SCr97QP-dRCmvAx5XuYm7BromFOom2a_Jt0sNGL-znSSfQ4eSeGI9nozhAONYb5ATBxQm.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693604fdce5e0692f31b_viNgWeoYB-1azO4y2CIHKAIq8MMr_Euozp69C_FEVsurWNbNnZ_Ymia_e7v9H28fo6iE3DynI4s0GTW5YJqt4ZfVMRZbSeGdT1gH3VcRNrFp5IpdT3y_SZHXs4lcXdpGQsSLAMz5.png", 404:""handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769373977264f13f1e1f3_PX9KGh0mUL4u5Cvl-6ur1ooKLirsOV6AqKeB5RIzNH565mU4jVyDv4aJeNFMoRDVWKhjxd0hQnsSyBLYd--J0bs1PN3eCa-vs9tnIHCmwmuu2zJ_b3GVW44mIyR1JbYJh3tjoSnU.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca769375f97517487b1b702_mbzyqEAG00BJPz_omdW3AI146o03WNWN_3PTkJ0iV9PcDUm23Px26SVfvTn0hLnA9_J7w-DAjpVyZyN751NW0oYUgCyV0YabMrclhRtLEdlvaG59fvUwcsENzhInw3trYPSIfPm3.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5ca7693789cf381472eeb01f_kLhhNFcfFdLoTCAOwLfHIRUSJ0VhIkpGCntl4BnM0HTqEBJpIp3vNf2OJJ8eay9W4CFhGYbowxH0AtBQVhMuh0yqb0u8kubl-cGaYnQPZ91_ePmZwrZxRTXvYvxAmjz_xhohETvG.png", 404:""
handleUnknownRoute: "/assets/articles/figma-as-a-presentation-tool-unifying-templates/assets/articles/figma-as-a-presentation-tool-unifying-templates/5cab4bc23be192f69f815e16_OjpwJBR5Xaq9QproAN1xwA7VdaPVr2e_aB6kSh-hPYnAYaSolO1wv3rOwVAEC4kINGVtdXc63c5VEc2gEULNY78XG-LBwSzMIBT6QhmyYO1mbSAKspoEC0GCYBTycIC9PkTltrhr.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cacae969ffb28e551a5ff58_Screenshot%20from%202019-04-09%2017-38-54.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cab18d1f8e0122074e675cd_f7xbhesGwc6bnK96npjdBOHv30bhgOxPp1Zvrjugs5BvMIs80tptMSQRq5Sfd8iOgyabnt48zlXbtoEaiwz2pH4r-sRw4miJAZIvRjcgPW_68KUlniyBv7EIIHuDZjSrpZZRgAe7.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784214e809596d7_dDlLB0L_DjPrGd-SOAebWu5jcTfFvMbt4EcpiUxDhZSBJT06QmcGS8jxw7cyxpBHZ9o60JjIyRcSj3kLeBuTbYDkzy3ckAjwHdnlbD4BrUrYRgGjDGFmb4jHJNrGHuE1MV_NJVIJ.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c6929126465bb7749_5jJAhf0_shpDqdSn5RoXQHSQjoxJgYqInP2mS6QlMp-JAW-selWm2CuF37meAav1-vICO4nryz75ihbtEa_T1VbeAsa6X9O6fM3E2x9TKDRcKFVg_bgJTgUI9Ws8SZ-P_EgupHNo.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca7390f89cf383d85edc1a7_9ZBi8xYYrDUZCPkf3fWQpZVhYtVVxmhvvzJhqwkiMPDfw2j9XDapV9pmQ1XFoWAcrRfmcF4qoAB43Uhu7bFjzmXtO6k8JBnU4kneguPRkMMuTJ9jK_kn0Jiw_jFRvRYEv5gELRel.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78c544edd8398605408_TkxUBkM5og4kOIbqBEqQhXxo4ICR9yi7_u6oPMscqTWXrcLkbaSuIpszjavnieBG1zjx0IJXP3Vm2Yv7zOzZtFr1V-GX_FWognMnu6LTRNPmYdm2s1yIauaOxnbNmNYg6m4wj_X-.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5cadabdc417d96b167228524_Screenshot%20from%202019-04-10%2011-33-22.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5ca738fe04fdce4d0e9235c9_YREV9zf5eOjr4GFXmy76Z3ms9_-sgH_GixYnLGgjifRO6rZTaFWYCeAI9qAY91ZC9q0yjB5RqQUwrqZWMXqwCHCyRbVa9P62-uSbk94s8k_egn2GpjTEmtU8gYlN3R9Gr7rlG4Qn.png", 404:""
handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78cd784213e1e9596d8_2TLQijarlStUBS8zl89d5nPI-ODRPKvhOmXojaArDa5jTjkcFGE6Q4O7R-dg1ZwYZIizTBLNYRXCZ6ijSmbWyj9TO1zkpCeOOe03qaBWrONlCEjLpwab_xE-qyWU8c20COgMCe9C.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98b78d544edde73b605409_l1PcV6xixQCMNa1M0l3Qs_Vdw5Lzyw4UuRP2wPUBw556P79s3Rf_Meq3otSupxU2out5Gf_tjj513ojmrsZfnWziLFtmXONFnzhw7Kqf6FnWcrVAnOU84wPoR37P-mtZwLuNGkBh.png", 404:""handleUnknownRoute: "/assets/articles/cypress-testing-running-tests-in-parallel/assets/articles/cypress-testing-running-tests-in-parallel/5c98eff8de94e85e2807f5c5_rh1xcaXL1IYqJQNMxZTQbEdKKd63SX9HCxVbj3bI9AgYwwUIj4DO1KRo0N2Qz_AdoEVoiYC-TyF1kCtlMu2VFJZTisC7rJcBOqiNYehCF7oSIRaLRjgyRJmQwTTRJoUT2wGF_-tz.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca4b81406e86c_C5WfyuShFIOmXjh1p4zTfprlg2s_NuAOx2RAxqikxdR6f1QkbBif1bgs-s25qxp_0rvFIZt5klAiYhTQDcsK4MLU3NQv5fxVunwU_29YGib5BR-7qOBimSaNv5Vx3GbApt6Ntu8H.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04348539202fcb8066_4bueN9KXUju5VRs-R_Rl8qwMUhcb3cImyAnxTlyaCAneY4tKCu394R2X8u3zLO3muwCyD8xR8NiqZ1FPcJy4ME677KsDfik8kuiuo3HD4ceFaPG_RyGNLb8cpaCozX7OA6H5brDl.png", 404:""
handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc047c1ca46dc006e86d_ET_6LcJOj2gMhxb6Yyo6thcpHOiO9aRA3f_QxczPXEMFAB88v1gwTahl9BBddEuashKBZhy_-cicics4k4oZKUMV2Nz4_bADqOzjsqE9_6WwMOromTtKtk_yW57M2gQh86L9fsaG.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6ca7a8277245_fVGdQ2Ujp3zEIyuarEBAjTsXuIdgsu8TV3d-BWHDiq8gQyynOMaNa0GJicnKmrrFWcCLJCAUGg8yjR4yDjhKDOVLZhQwJK29yiuwFX8ijPCkxrlpi6OxVfEtklltfamA2LWXtMSd.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04e346b768bfb24eec_tHswHVEs9uvxlA7YEmKemsf53RDPf4bLcvE2ora2pec9pr3COaZJEaK8HBWm3iLWuUIIVl1A0jJZ3i_3jHOyMfifiKQqt8Nf-CmqjEsCPFwSVAdaXrmgw60etKJ4qjy6MFDhOTUY.png", 404:""handleUnknownRoute: "/assets/articles/figma-vs-sketch-text-alignment-comparison/assets/articles/figma-vs-sketch-text-alignment-comparison/5c4edc04dfbd6c9cd1277246_yTBfpVSA4SncK_CeOQhA_nQc27o88-Bv9i8_cHUb6ExzOY4ofDALulU6JjSMstB7XTuxMWttxcN5iQ_rKB-PXAfBc41EpB-YwQuqnIgE5XalzoLVoQ4JJcHQNwoHN63HX7V_M_gp.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/assets/articles/testing-with-protractor-how-to-fix-synchronization-issues/5dbacaa2bbcbc1610e7123fa_Examples%20of%20detected%20code%20parts.png", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0034-performance-testing-via-artillery-io/0034-performance-testing-via-artillery-io.json", 404:""handleUnknownRoute: "/assets/articles/0036-tagtide-library-make-your-html-editor-friendly-and-more/0036-tagtide-library-make-your-html-editor-friendly-and-more.json", 404:""handleUnknownRoute: "/assets/articles/0035-diving-into-seeking-issue-with-mp3-files/0035-diving-into-seeking-issue-with-mp3-files.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0033-arc-a-new-weapon-against-accessibility-bugs/0033-arc-a-new-weapon-against-accessibility-bugs.json", 404:""handleUnknownRoute: "/assets/articles/0032-setting-up-your-project-on-gcp-fast-using-terraform-and-kubernetes/0032-setting-up-your-project-on-gcp-fast-using-terraform-and-kubernetes.json", 404:""handleUnknownRoute: "/assets/articles/0031-ngx-bootstrap-v7-0-0-is-officially-released/0031-ngx-bootstrap-v7-0-0-is-officially-released.json", 404:""handleUnknownRoute: "/assets/articles/0030-how-to-deploy-firebase-preview-channels-on-travis-ci/0030-how-to-deploy-firebase-preview-channels-on-travis-ci.json", 404:""
handleUnknownRoute: "/assets/articles/0029-scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform/0029-scully-helped-us-reach-a-99-lighthouse-score-for-a-b2c-platform.json", 404:""
handleUnknownRoute: "/assets/articles/0028-designing-aggregator-app-from-a-to-z-part-2/0028-designing-aggregator-app-from-a-to-z-part-2.json", 404:""
handleUnknownRoute: "/assets/articles/0027-designing-aggregator-app-from-a-to-z-part-1/0027-designing-aggregator-app-from-a-to-z-part-1.json", 404:""
handleUnknownRoute: "/assets/articles/0026-multi-highlighting-for-draftjs/0026-multi-highlighting-for-draftjs.json", 404:""handleUnknownRoute: "/assets/articles/0025-new-year-new-valor-new-you/0025-new-year-new-valor-new-you.json", 404:""
handleUnknownRoute: "/assets/articles/0024-incorporating-user-research-on-live-projects-part-4/0024-incorporating-user-research-on-live-projects-part-4.json", 404:""
handleUnknownRoute: "/assets/articles/0023-incorporating-user-research-on-live-projects-part-3/0023-incorporating-user-research-on-live-projects-part-3.json", 404:""handleUnknownRoute: "/assets/articles/0022-incorporating-user-research-on-live-projects-part-2/0022-incorporating-user-research-on-live-projects-part-2.json", 404:""
handleUnknownRoute: "/assets/articles/0021-incorporating-user-research-on-live-projects-part-1/0021-incorporating-user-research-on-live-projects-part-1.json", 404:""handleUnknownRoute: "/assets/articles/0020-why-you-might-want-to-switch-to-time-and-material-from-fixed-price/0020-why-you-might-want-to-switch-to-time-and-material-from-fixed-price.json", 404:""handleUnknownRoute: "/assets/articles/0019-cross-site-scripting-xss-a-qa-engineers-guide/0019-cross-site-scripting-xss-a-qa-engineers-guide.json", 404:""
handleUnknownRoute: "/assets/articles/0018-career-path-for-a-flat-structured-company/0018-career-path-for-a-flat-structured-company.json", 404:""handleUnknownRoute: "/assets/articles/0017-json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server/0017-json-web-token-authorization-with-access-and-refresh-tokens-in-angular-application-with-node-js-server.json", 404:""
handleUnknownRoute: "/assets/articles/0016-testing-ios-app-vulnerabilities-with-jailbreaking-part-1/0016-testing-ios-app-vulnerabilities-with-jailbreaking-part-1.json", 404:""handleUnknownRoute: "/assets/articles/0015-benefits-of-agile-to-business-and-team/0015-benefits-of-agile-to-business-and-team.json", 404:""handleUnknownRoute: "/assets/articles/0014-valor-software-named-top-development-company-in-ukraine-by-clutch/0014-valor-software-named-top-development-company-in-ukraine-by-clutch.json", 404:""handleUnknownRoute: "/assets/articles/0013-testing-with-protractor-how-to-fix-synchronization-issues/0013-testing-with-protractor-how-to-fix-synchronization-issues.json", 404:""
handleUnknownRoute: "/assets/articles/0012-hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention/0012-hacktoberfest-2019-is-coming-and-ngx-bootstrap-strives-for-your-attention.json", 404:""
handleUnknownRoute: "/assets/articles/0011-the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company/0011-the-4-biggest-lessons-we-learned-while-building-a-startup-product-as-an-outsource-company.json", 404:""
handleUnknownRoute: "/assets/articles/0010-angular-and-seo-structured-data-for-rich-snippets/0010-angular-and-seo-structured-data-for-rich-snippets.json", 404:""
handleUnknownRoute: "/assets/articles/0009-ngx-bootstrap-angular-ivy-is-here/0009-ngx-bootstrap-angular-ivy-is-here.json", 404:""
handleUnknownRoute: "/assets/articles/0008-webflow-custom-code-snippets-you-would-use-episode-1/0008-webflow-custom-code-snippets-you-would-use-episode-1.json", 404:""handleUnknownRoute: "/assets/articles/0007-testing-canvas-could-be-easier/0007-testing-canvas-could-be-easier.json", 404:""
handleUnknownRoute: "/assets/articles/0006-case-study-of-applitools-or-not-only-cypress-cross-browser-testing/0006-case-study-of-applitools-or-not-only-cypress-cross-browser-testing.json", 404:""
handleUnknownRoute: "/assets/articles/0005-figma-as-a-presentation-tool-unifying-templates/0005-figma-as-a-presentation-tool-unifying-templates.json", 404:""
handleUnknownRoute: "/assets/articles/0004-cypress-testing-running-tests-in-parallel/0004-cypress-testing-running-tests-in-parallel.json", 404:""
handleUnknownRoute: "/assets/articles/0003-quality-assured-what-it-really-takes-to-test-open-source-libraries/0003-quality-assured-what-it-really-takes-to-test-open-source-libraries.json", 404:""
handleUnknownRoute: "/assets/articles/0002-figma-vs-sketch-text-alignment-comparison/0002-figma-vs-sketch-text-alignment-comparison.json", 404:""handleUnknownRoute: "/assets/articles/0001-como-o-scully-nos-ajudou-a-atingir-99-pontos-no-lighthouse-para-uma-plataforma-b2c/0001-como-o-scully-nos-ajudou-a-atingir-99-pontos-no-lighthouse-para-uma-plataforma-b2c.json", 404:""
handleUnknownRoute: "/assets/articles/ashes-of-creation/ashes-of-creation.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""
handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""
handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""
handleUnknownRoute: "/assets/articles/0039-debugging-ngrx-in-nativescript-with-redux-devtools/0039-debugging-ngrx-in-nativescript-with-redux-devtools.json", 404:""handleUnknownRoute: "/assets/articles/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor/0038-announcing-strategic-partnership-with-zack-jackson-the-module-federation-inventor.json", 404:""handleUnknownRoute: "/assets/articles/0037-implementing-websockets-plugin-for-nativescript-using-react-native/0037-implementing-websockets-plugin-for-nativescript-using-react-native.json", 404:""