-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoi_validation_cache.json
More file actions
1232 lines (1232 loc) · 63.4 KB
/
Copy pathdoi_validation_cache.json
File metadata and controls
1232 lines (1232 loc) · 63.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"https://doi.org/10.1016/0014-3057(84)90075-2": true,
"https://doi.org/10.1002/pola.20882": true,
"https://doi.org/10.1002/pol.1959.1203512832": true,
"https://doi.org/10.1002/pola.1986.080241203": true,
"https://doi.org/10.1002/pi.5594": true,
"https://doi.org/10.1002/pol.1964.100020820": true,
"https://doi.org/10.1002/macp.1984.021850311": true,
"https://doi.org/10.1002/app.1991.070420601": true,
"https://doi.org/10.1295/polymj.4.495": true,
"https://doi.org/10.1590/1516-1439.012015": true,
"https://doi.org/10.1002/mren.201900014": true,
"https://doi.org/10.1021/ja01251a006": true,
"https://doi.org/10.1002/pol.1971.150090401": true,
"https://doi.org/10.1016/0032-3861(81)90007-0": true,
"https://doi.org/10.1002/macp.1996.021970719": true,
"https://doi.org/10.1002/pol.1977.170150618": true,
"https://doi.org/10.1080/00222338908052056": true,
"https://doi.org/10.1002/mrc.3811": true,
"https://doi.org/10.1016/s0032-3861(99)00117-2": true,
"https://doi.org/10.1139/v55-163": true,
"https://doi.org/10.1080/00222338108066448": true,
"https://doi.org/10.1016/0032-3861(87)90424-1": true,
"https://doi.org/10.1002/macp.1997.021980521": true,
"https://doi.org/10.1002/pol.1968.150060805": true,
"https://doi.org/10.1021/ja01184a070": true,
"https://doi.org/10.1002/(sici)1097-4628(19970516)64_7_1259__aid-app3_3.0.co;2-i": false,
"https://doi.org/10.1002/_sici_1097-4628_19970516_64_7_1259__aid-app3_3.0.co_2-i": false,
"https://doi.org/10.1002/(SICI)1097-4628(19970516)64:7<1259::AID-APP3>3.0.CO;2-I": true,
"https://doi.org/10.1021/ma00142a062": true,
"https://doi.org/10.1002/pola.23152": true,
"https://doi.org/10.1021/ja01122a046": true,
"https://doi.org/10.1002/app.35234": true,
"https://doi.org/10.1002/macp.1994.021950520": true,
"https://doi.org/10.1002/pol.1975.170131117": true,
"https://doi.org/10.1002/pol.1978.130160802": true,
"https://doi.org/10.1007/BF01496929": true,
"https://doi.org/10.1002/macp.1966.020910111": true,
"https://doi.org/10.1002/pol.1961.1205516104": true,
"https://doi.org/10.1080/00222337608061235": true,
"https://doi.org/10.1002/app.1992.070451103": true,
"https://doi.org/10.1016/j.eurpolymj.2005.04.012": true,
"https://doi.org/10.1002/pol.1974.170121209": true,
"https://doi.org/10.1016/0032-3861(92)90508-t": true,
"https://doi.org/10.1002/pol.1984.170221006": true,
"https://doi.org/10.1080/1023666x.2013.879437": true,
"https://doi.org/10.1295/polymj.6.185": true,
"https://doi.org/10.1002/app.1977.070210822": true,
"https://doi.org/10.1016/0014-3057_68_90015-3": false,
"https://doi.org/10.1016/0014-3057(68)90015-3": true,
"https://doi.org/10.1002/pol.1982.170200202": true,
"https://doi.org/10.1002/pol.1964.100021114": true,
"https://doi.org/10.1002/app.25039": true,
"https://doi.org/10.1002/pol.1983.170211015": true,
"https://doi.org/10.1021/ja01113a025": true,
"https://doi.org/10.1002/pol.1950.120050607": true,
"https://doi.org/10.1002/pol.1963.100010645": true,
"https://doi.org/10.1080/00222337008059524": true,
"https://doi.org/10.1515/epoly.2011.11.1.675": true,
"https://doi.org/10.1002/macp.1960.020380108": true,
"https://doi.org/10.1021/ed049p367": true,
"https://doi.org/10.1002/pol.1976.170141012": true,
"https://doi.org/10.1002/(sici)1097-4628(19970815)65_7_1285__aid-app6_3.0.co;2-e": false,
"https://doi.org/10.1002/(SICI)1097-4628(19970815)65:7<1285::AID-APP6>3.0.CO;2-E": true,
"https://doi.org/10.1002/apmc.1972.050250111": true,
"https://doi.org/10.1021/ma00157a007": true,
"https://doi.org/10.1080/00222338508056635": true,
"https://doi.org/10.1002/macp.1971.021470118": true,
"https://doi.org/10.1016/0014-3057(89)90013-X": true,
"https://doi.org/10.1002/app.26290": true,
"https://doi.org/10.1007/s10965-005-3184-4": true,
"https://doi.org/10.1002/pen.22045": true,
"https://doi.org/10.1134/s1560090420030148": true,
"https://doi.org/10.1002/pol.1963.100010404": true,
"https://doi.org/10.1002/pol.1977.170150707": true,
"https://doi.org/10.1002/apmc.1991.051920104": true,
"https://doi.org/10.1002/pol.1949.120040505": true,
"https://doi.org/10.1002/pol.1958.1203112217": true,
"https://doi.org/10.1002/pol.1963.100010516": true,
"https://doi.org/10.1016/0014-3057(93)90092-T": true,
"https://doi.org/10.1002/app.1995.070551104": true,
"https://doi.org/10.1002/pol.1973.170111020": true,
"https://doi.org/10.1002/pi.1466": true,
"https://doi.org/10.1002/pola.1989.080271118": true,
"https://doi.org/10.1002/pol.1968.150061018": true,
"https://doi.org/10.3390/pr3040749": true,
"https://doi.org/10.1002/macp.1971.021470123": true,
"https://doi.org/10.1002/app.1964.070080136": true,
"https://doi.org/10.1016/0032-3950(86)90274-1": true,
"https://doi.org/10.1016/0032-3950(64)90501-5": true,
"https://doi.org/10.1002/macp.1961.020440145": true,
"https://doi.org/10.1080/10601325.2016.1176447": true,
"https://doi.org/10.1007/BF00254849": true,
"https://doi.org/10.1002/pol.1976.170140815": true,
"https://doi.org/10.1021/ma00110a004": true,
"https://doi.org/10.1016/0032-3861(93)90331-4": true,
"https://doi.org/10.1515/epoly.2012.12.1.181": true,
"https://doi.org/10.1246/nikkashi1948.70.11_1938": false,
"https://doi.org/10.3389/fchem.2014.00091": true,
"https://doi.org/10.1002/pol.1951.120060209": true,
"https://doi.org/10.1002/pola.1990.080280408": true,
"https://doi.org/10.1002/macp.1993.021940809": true,
"https://doi.org/10.1080/00222337008060982": true,
"https://doi.org/10.1002/pola.1180": true,
"https://doi.org/10.1002/app.1958": true,
"https://doi.org/10.1016/0032-3861(88)90091-2": true,
"https://doi.org/10.1016/0014-3057(95)00065-8": true,
"https://doi.org/10.1016/0032-3861(94)90918-0": true,
"https://doi.org/10.1002/macp.1961.020430119": true,
"https://doi.org/10.1081/ma-120017256": true,
"https://doi.org/10.1016/0032-3950(77)90257-X": true,
"https://doi.org/10.1002/macp.1981.021820412": true,
"https://doi.org/10.1002/pol.1983.170211126": true,
"https://doi.org/10.1016/0014-3057_73_90077-3": false,
"https://doi.org/10.1016/0014-3057(73)90077-3": true,
"https://doi.org/10.1016/0032-3861(79)90179-4": true,
"https://doi.org/10.1002/pol.1975.170130204": true,
"https://doi.org/10.1016/0032-3861(64)90140-5": true,
"https://doi.org/10.1002/mren.201600050": true,
"https://doi.org/10.1002/pol.1948.120030519": true,
"https://doi.org/10.1002/app.23226": true,
"https://doi.org/10.21767/2472-1123.100006": true,
"https://doi.org/10.1002/macp.1985.021860820": true,
"https://doi.org/10.1002/apmc.1991.051840113": true,
"https://doi.org/10.1080/00222338508063331": true,
"https://doi.org/10.1002/pol.1973.170111201": true,
"https://doi.org/10.1016/0032-3950(66)90085-2": true,
"https://doi.org/10.1002/app.1984.070290206": true,
"https://doi.org/10.1002/macp.200900553": true,
"https://doi.org/10.1016/j.polymer.2006.11.010": true,
"https://doi.org/10.1002/recl.19490681010": true,
"https://doi.org/10.1002/app.1965.070090204": true,
"https://doi.org/10.1016/0032-3950(76)90486-X": true,
"https://doi.org/10.1002/pol.1958.1202711517": true,
"https://doi.org/10.1002/pol.1977.170150106": true,
"https://doi.org/10.1007/BF01422002": true,
"https://doi.org/10.1002/pol.1950.120050210": true,
"https://doi.org/10.1002/macp.1992.021930218": true,
"https://doi.org/10.1002/marc.1987.030081207": true,
"https://doi.org/10.1002/pol.1959.1203613051": true,
"https://doi.org/10.1002/app.34012": true,
"https://doi.org/10.1021/ja01157a004": true,
"https://doi.org/10.1002/pol.1971.150091021": true,
"https://doi.org/10.1002/_sici_1097-4628_19970815_65_7_1285__aid-app6_3.0.co_2-e": false,
"https://doi.org/10.1016/0014-3057(92)90211-j": true,
"https://doi.org/10.1002/macp.1967.021100130": true,
"https://doi.org/10.1080/00222337708061249": true,
"https://doi.org/10.1002/jemt.23384": true,
"https://doi.org/10.1002/app.1986": true,
"https://doi.org/10.1002/macp.200700239": true,
"https://doi.org/10.1002/app.1960.070041111": true,
"https://doi.org/10.1002/pola.1990.080281121": true,
"https://doi.org/10.1002/macp.1982.021830805": true,
"https://doi.org/10.1002/macp.1983.021840614": true,
"https://doi.org/10.1016/0014-3057(79)90175-7": true,
"https://doi.org/10.1016/0014-3057(68)90048-7": true,
"https://doi.org/10.1016/0032-3861(79)90145-9": true,
"https://doi.org/10.1080/00222337708061265": true,
"https://doi.org/10.1002/pola.1990.080281224": true,
"https://doi.org/10.1002/pol.1958.1203312609": true,
"https://doi.org/10.1295/koron1944.13.137_390": true,
"https://doi.org/10.1016/0032-3950(81)90306-3": true,
"https://doi.org/10.1002/app.1284": true,
"https://doi.org/10.1002/app.1986.070310531": true,
"https://doi.org/10.1016/0032-3950(64)90568-4": true,
"https://doi.org/10.1002/pol.1959.1204113837": true,
"https://doi.org/10.1021/ma9819337": true,
"https://doi.org/10.1002/pola.29017": true,
"https://doi.org/10.1016/s0014-3057(02)00090-3": true,
"https://doi.org/10.1021/ma00238a001": true,
"https://doi.org/10.1002/macp.1996.021970904": true,
"https://doi.org/10.1002/pol.1969.150070224": true,
"https://doi.org/10.1016/0032-3950(65)90141-3": true,
"https://doi.org/10.1080/00222338408056576": true,
"https://doi.org/10.1002/app.24726": true,
"https://doi.org/10.1016/0014-3057(94)90272-0": true,
"https://doi.org/10.1295/koron1944.13.125": true,
"https://doi.org/10.1002/macp.1965.020830108": true,
"https://doi.org/10.1021/ma60020a005": true,
"https://doi.org/10.1002/macp.1975.021760815": true,
"https://doi.org/10.1002/pol.1964.100020826": true,
"https://doi.org/10.1002/app.1964.070080428": true,
"https://doi.org/10.1002/macp.1986.021870801": true,
"https://doi.org/10.1002/bscb.19550640306": true,
"https://doi.org/10.1081/ma-100101636": true,
"https://doi.org/10.1002/pola.20191": true,
"https://doi.org/10.1002/pol.1982.170201008": true,
"https://doi.org/10.1016/0032-3950(83)90410-0": true,
"https://doi.org/10.1021/ja01187a053": true,
"https://doi.org/10.1080/10601328308056527": true,
"https://doi.org/10.1002/marc.1989.030101209": true,
"https://doi.org/10.1002/pol.1984.170220109": true,
"https://doi.org/10.1016/0032-3861(75)90170-6": true,
"https://doi.org/10.1002/app.1979.070231102": true,
"https://doi.org/10.1142/s0256767909004011": true,
"https://doi.org/10.1021/ja01156a073": true,
"https://doi.org/10.1016/s0032-3861(97)00363-7": true,
"https://doi.org/10.1016/s0032-3861(99)00116-0": true,
"https://doi.org/10.1002/pola.1994.080321212": true,
"https://doi.org/10.1002/pol.1961.1205015330": true,
"https://doi.org/10.1002/pol.1981.170190213": true,
"https://doi.org/10.1002/pola.21702": true,
"https://doi.org/10.1007/BF00297320": true,
"https://doi.org/10.1002/pola.23695": true,
"https://doi.org/10.1002/macp.1959.020310115": true,
"https://doi.org/10.1007/BF00256296": true,
"https://doi.org/10.1002/apmc.1977.050620108": true,
"https://doi.org/10.1021/ja01227a502": true,
"https://doi.org/10.1002/pol.1964.100020333": true,
"https://doi.org/10.1080/10601326908051918": true,
"https://doi.org/10.1002/app.1965.070090412": true,
"https://doi.org/10.1007/BF00255696": true,
"https://doi.org/10.1002/macp.1993.021940706": true,
"https://doi.org/10.1007/s10965-008-9246-7": true,
"https://doi.org/10.1080/00222338308081082": true,
"https://doi.org/10.1295/polymj.pj2006180": true,
"https://doi.org/10.1002/pol.1963.100010635": true,
"https://doi.org/10.1002/pol.1967.150050606": true,
"https://doi.org/10.1002/macp.1967.021100111": true,
"https://doi.org/10.1002/pol.1970.150080714": true,
"https://doi.org/10.1002/(sici)1097-4628(19991213)74_12_2924__aid-app18_3.0.co;2-r": false,
"https://doi.org/10.1002/(SICI)1097-4628(19991213)74:12<2924::AID-APP18>3.3.CO;2-I": true,
"https://doi.org/10.1016/s0032-3861(00)00019-7": true,
"https://doi.org/10.1007/bf00255507": true,
"https://doi.org/10.1002/macp.1984.021850212": true,
"https://doi.org/10.1002/pol.1982.170200618": true,
"https://doi.org/10.1002/pol.1982.170201009": true,
"https://doi.org/10.1007/BF00262121": true,
"https://doi.org/10.1007/BF00255252": true,
"https://doi.org/10.1016/j.polymer.2021.123989": true,
"https://doi.org/10.1002/macp.1974.021750518": true,
"https://doi.org/10.1016/0032-3950(84)90244-2": true,
"https://doi.org/10.1002/pol.1965.100030308": true,
"https://doi.org/10.1002/pola.26906": true,
"https://doi.org/10.1002/pol.1983.170210619": true,
"https://doi.org/10.1002/pola.1993.080310305": true,
"https://doi.org/10.1002/pola.1994.080320707": true,
"https://doi.org/10.1002/app.1995.070561111": true,
"https://doi.org/10.1002/pola.1992.080301104": true,
"https://doi.org/10.1002/pol.1947.120020509": true,
"https://doi.org/10.1021/ma00009a032": true,
"https://doi.org/10.1002/pol.1966.150041108": true,
"https://doi.org/10.1021/ja01183a046": true,
"https://doi.org/10.1002/pola.20149": true,
"https://doi.org/10.1002/pola.10140": true,
"https://doi.org/10.1002/pi.2626": true,
"https://doi.org/10.1016/0014-3057(76)90065-3": true,
"https://doi.org/10.1023/b_jpol.0000021749.81047.7f": false,
"https://doi.org/10.1023/B:JPOL.0000021749.81047.7f": true,
"https://doi.org/10.1016/0032-3950(69)90429-8": true,
"https://doi.org/10.1002/macp.1982.021831106": true,
"https://doi.org/10.1016/s0032-3861_01_00697-8": false,
"https://doi.org/10.1016/S0032-3861(01)00697-8": true,
"https://doi.org/10.1002/bscb.19500590704": true,
"https://doi.org/10.1002/pol.1959.1203913516": true,
"https://doi.org/10.1002/mren.201800003": true,
"https://doi.org/10.1080/00222338208063268": true,
"https://doi.org/10.1002/app.1994.070531217": false,
"https://doi.org/10.1002/app.1994.070531307": true,
"https://doi.org/10.1021/ed062p173": true,
"https://doi.org/10.1002/pol.1960.1204314214": true,
"https://doi.org/10.1021/ma00010a050": true,
"https://doi.org/10.1002/macp.1962.020580109": true,
"https://doi.org/10.1002/apmc.1984.051250112": true,
"https://doi.org/10.1002/polc.5070160653": true,
"https://doi.org/10.1021/ma00142a004": true,
"https://doi.org/10.1295/polymj.24.87": true,
"https://doi.org/10.1002/pol.1971.150090918": true,
"https://doi.org/10.1016/0032-3950(76)90198-2": true,
"https://doi.org/10.1002/macp.1989.021900509": true,
"https://doi.org/10.1002/macp.1967.021100127": true,
"https://doi.org/10.1002/pat.884": true,
"https://doi.org/10.1002/pol.1965.110030419": true,
"https://doi.org/10.1002/macp.1970.021330101": true,
"https://doi.org/10.1002/pol.1964.100021017": true,
"https://doi.org/10.1080/00222337008060964": true,
"https://doi.org/10.1002/mats201500072": true,
"https://doi.org/10.1016/0032-3861(70)90017-0": true,
"https://doi.org/10.1080/00222338508063314": true,
"https://doi.org/10.1002/pol.1953.120110508": true,
"https://doi.org/10.1002/pol.1986.140240507": true,
"https://doi.org/10.1038/1981085a0": true,
"https://doi.org/10.1002/pol.1963.100010401": true,
"https://doi.org/10.1081/ma-120013573": true,
"https://doi.org/10.1016/s0032-3861(97)00249-8": true,
"https://doi.org/10.1246/nikkashi1898.69.7_1367": true,
"https://doi.org/10.1016/0032-3861(94)90549-5": true,
"https://doi.org/10.1080/00222337708061267": true,
"https://doi.org/10.1002/pol.1954.120147308": true,
"https://doi.org/10.1007/s10965-019-1776-7": true,
"https://doi.org/10.1002/(sici)1097-4628(19980118)67_3_559__aid-app18_3.0.co;2-q": false,
"https://doi.org/10.1002/(SICI)1097-4628(19980118)67:3<559::AID-APP18>3.0.CO;2-Q": true,
"https://doi.org/10.1002/pola.1988.080260222": true,
"https://doi.org/10.1002/pol.1984.170220804": true,
"https://doi.org/10.1016/0032-3861(95)91562-L": true,
"https://doi.org/10.1002/app.1987.070330307": true,
"https://doi.org/10.1002/pol.1967.150050609": true,
"https://doi.org/10.1002/pol.1967.110050912": true,
"https://doi.org/10.3390/polym11030487": true,
"https://doi.org/10.1002/macp.1982.021830104": true,
"https://doi.org/10.1007/bf02074484": true,
"https://doi.org/10.1080/00222337808069413": true,
"https://doi.org/10.1002/pol.1969.150070836": true,
"https://doi.org/10.1002/pola.24522": true,
"https://doi.org/10.1135/cccc20071244": true,
"https://doi.org/10.1016/0032-3861(92)90747-k": true,
"https://doi.org/10.1007/BF00306232": true,
"https://doi.org/10.1002/pol.1961.1205516120": true,
"https://doi.org/10.1016/0032-3861(68)90077-3_": false,
"https://doi.org/10.1002/pol.1968.150060409": true,
"https://doi.org/10.1002/macp.1967.021030131": true,
"https://doi.org/10.1002/pola.1989.080270825": true,
"https://doi.org/10.1016/0014-3057_95_00157-3": false,
"10.1016/0014-3057(95)00157-3": true,
"https://doi.org/10.1002/pol.1984.170221002": true,
"https://doi.org/10.1021/ma00120a003": true,
"https://doi.org/10.1002/pol.1965.100030215": true,
"https://doi.org/10.1016/0014-3057(79)90226-X": true,
"https://doi.org/10.1002/actp.1990.010410506": true,
"https://doi.org/10.1002/app.20966": true,
"https://doi.org/10.1016/0014-3057(65)90013-3": true,
"https://doi.org/10.1246/bcsj.35.57": true,
"https://doi.org/10.1002/macp.1996.021971120": true,
"https://doi.org/10.1295/koron1944.30.223": true,
"https://doi.org/10.1039/d1py00750e": true,
"https://doi.org/10.1295/koron.32.189": true,
"https://doi.org/10.1002/(sici)1521-3919(19980101)7_1_97__aid-mats97_3.0.co;2-7": false,
"https://doi.org/10.1002/(SICI)1521-3919(19980101)7:1<97::AID-MATS97>3.0.CO;2-7": true,
"https://doi.org/10.1002/macp.1967.021030107": true,
"https://doi.org/10.1002/pol.1951.120060113": true,
"https://doi.org/10.1002/pol.1970.150081106": true,
"https://doi.org/10.1021/ma300634d": true,
"https://doi.org/10.1002/app.25271": true,
"https://doi.org/10.1016/0032-3950(70)90351-5": true,
"https://doi.org/10.1002/pol.1955.120168240": true,
"https://doi.org/10.1002/pola.21297": true,
"https://doi.org/10.1021/ja01136a046": true,
"https://doi.org/10.1295/polymj.17.761": true,
"https://doi.org/10.1002/pola.10964": true,
"https://doi.org/10.2307/3572476": true,
"https://doi.org/10.1002/_sici_1521-3935_19990801_200_8_1935__aid-macp1935_3.0.co_2-1": false,
"https://doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1935::AID-MACP1935>3.0.CO;2-1": true,
"https://doi.org/10.1002/pola.1986.080240103": true,
"https://doi.org/10.1080/00222338108056756": true,
"https://doi.org/10.1002/actp.1983.010340113": true,
"https://doi.org/10.1002/pol.1979.170170927": true,
"https://doi.org/10.1002/pol.1971.150090805": true,
"https://doi.org/10.1002/macp.1961.020470112": true,
"https://doi.org/10.1002/macp.1977.021780408": true,
"https://doi.org/10.1002/pol.1963.110010813": true,
"https://doi.org/10.1080/00222337008069375": true,
"https://doi.org/10.1246/bcsj.54.3245": true,
"https://doi.org/10.1002/macp.1961.020470113": true,
"https://doi.org/10.1002/pol.1967.150050813": true,
"https://doi.org/10.1002/pola.1990.080281211": true,
"https://doi.org/10.1002/actp.1983.010340112": true,
"https://doi.org/10.1007/BF00256313": true,
"https://doi.org/10.1081/ma-200063144": true,
"https://doi.org/10.1016/0032-3950(69)90412-2": true,
"https://doi.org/10.1002/pol.1950.120050209": true,
"https://doi.org/10.1295/polymj.17.737": true,
"https://doi.org/10.1002/pol.1972.170101013": true,
"https://doi.org/10.1007/BF00256283": true,
"https://doi.org/10.1002/pol.1969.150070817": true,
"https://doi.org/10.1002/pol.1967.150051015": true,
"https://doi.org/10.1002/app.21376": true,
"https://doi.org/10.1002/macp.1967.021030106": true,
"https://doi.org/10.1002/pol.1963.110010203": true,
"https://doi.org/10.1080/10601329508013679": true,
"https://doi.org/10.1134/s1560090414020067": true,
"https://doi.org/10.1007/s13726-014-0280-5": true,
"https://doi.org/10.1016/0014-3057(74)90065-2": true,
"https://doi.org/10.1002/pol.1977.130150603": true,
"https://doi.org/10.1002/pol.1979.170171024": true,
"https://doi.org/10.1007/BF00256295": true,
"https://doi.org/10.1002/pol.1971.160090823": false,
"https://doi.org/10.1002/pol.1971.150090810": true,
"https://doi.org/10.1002/macp.1971.021440118": true,
"https://doi.org/10.1002/polc.5070420125": true,
"https://doi.org/10.1002/app.1992.070451106": true,
"https://doi.org/10.1155/2014_643789": false,
"http://dx.doi.org/10.1155/2014/643789": true,
"https://doi.org/10.1002/pi.4949": true,
"https://doi.org/10.1007/s10853-005-6297-6": true,
"https://doi.org/10.1007/s00289-007-0787-4": true,
"https://doi.org/10.1002/bscb.19580670304": true,
"https://doi.org/10.1002/pol.1968.150060524": true,
"https://doi.org/10.1002/(sici)1099-0518(19980415)36_5_813__aid-pola14_3.0.co;2-j": false,
"https://doi.org/10.1002/(SICI)1099-0518(19980415)36:5<813::AID-POLA14>3.0.CO;2-J": true,
"https://doi.org/10.1002/marc.1981.030020510": true,
"https://doi.org/10.1021/acs.macromol.5b01631": true,
"https://doi.org/10.1002/bscb.19500590907": true,
"https://doi.org/10.1002/pol.1961.1205415906": true,
"https://doi.org/10.1002/pol.1979.170170228": true,
"https://doi.org/10.1002/pola.1986.080240421": true,
"https://doi.org/10.1002/pol.1959.1204113822": true,
"https://doi.org/10.1002/app.1992.070440812": true,
"https://doi.org/10.1002/pol.1958.1203012126": true,
"https://doi.org/10.1002/pol.1959.1203512817": true,
"https://doi.org/10.1016/0032-3861(93)90552-L": true,
"https://doi.org/10.1002/app.1982.070270743": true,
"https://doi.org/10.1002/pol.1952.120090403": true,
"https://doi.org/10.1002/mren.201100065": true,
"https://doi.org/10.1016/0032-3861(64)90192-2": true,
"https://doi.org/10.1002/apmc.1977.050620107": true,
"https://doi.org/10.1002/macp.1978.021790510": true,
"https://doi.org/10.1016/0032-3861(93)90755-y": true,
"https://doi.org/10.1295/polymj.21.689": true,
"https://doi.org/10.1002/macp.1985.021860819": true,
"https://doi.org/10.1002/pi.1238": true,
"https://doi.org/10.1002/pol.1961.1205416008": true,
"https://doi.org/10.1016/j.polymer.2004.07.030": true,
"https://doi.org/10.1246/bcsj.39.2257": true,
"https://doi.org/10.1021/ja01216a006": true,
"https://doi.org/10.1002/pol.1976.170140318": true,
"https://doi.org/10.1016/0032-3950(64)90591-X": true,
"https://doi.org/10.1002/(sici)1099-0518(20000101)38_1_60__aid-pola8_3.0.co;2-f": false,
"https://doi.org/10.1002/(SICI)1099-0518(20000101)38:1<60::AID-POLA8>3.0.CO;2-F": true,
"https://doi.org/10.1002/macp.200700026": true,
"https://doi.org/10.1016/0032-3861_96_81142-6": false,
"https://doi.org/10.1016/0032-3861(96)81142-6": true,
"https://doi.org/10.1002/app.27476": true,
"https://doi.org/10.1021/ja01483a035": true,
"https://doi.org/10.1002/pol.1959.1203713116": true,
"https://doi.org/10.1002/pol.1965.100030209": true,
"https://doi.org/10.1002/cjoc.201200625": true,
"https://doi.org/10.1002/pi.1255": true,
"https://doi.org/10.1002/macp.1963.020600106": true,
"https://doi.org/10.1002/pola.1989.080270301": true,
"https://doi.org/10.1002/pol.1962.1206217409": true,
"https://doi.org/10.1246/nikkashi.1972.209": true,
"https://doi.org/10.1295/koron1944.28.206": true,
"https://doi.org/10.1002/pol.1976.170141122": true,
"https://doi.org/10.1021/ma900450p": true,
"https://doi.org/10.1246/bcsj.47.928": true,
"https://doi.org/10.1016/0032-3950(65)90403-X": true,
"https://doi.org/10.1002/pola.1991.080290105": true,
"https://doi.org/10.1016/0032-3950(65)90513-7": true,
"https://doi.org/10.1016/0032-3861(90)90135-l": true,
"https://doi.org/10.1002/macp.1970.021390112": true,
"https://doi.org/10.1002/pol.1948.120030202": true,
"https://doi.org/10.1002/pol.1973.170110608": true,
"https://doi.org/10.1002/app.1993.070500715": true,
"https://doi.org/10.1002/pol.1983.170210811": true,
"https://doi.org/10.1002/pola.1991.080290308": true,
"https://doi.org/10.1002/pol.1948.120030214": true,
"https://doi.org/10.1002/pol.1983.170211129": true,
"https://doi.org/10.1002/pola.1989.080270233": true,
"https://doi.org/10.1016/s0014-3057(02)00246-x": true,
"https://doi.org/10.1002/mats.202100048": true,
"https://doi.org/10.1021/ma302015e": true,
"https://doi.org/10.1016/s0014-3057(96)00054-7": true,
"https://doi.org/10.1002/pola.10368": true,
"https://doi.org/10.1002/pol.1959.1203613014": true,
"https://doi.org/10.1002/macp.1983.021840305": true,
"https://doi.org/10.1016/0032-3861(65)90048-0": true,
"https://doi.org/10.1002/pol.1984.170220711": true,
"https://doi.org/10.1016/0032-3950(82)90344-6": true,
"https://doi.org/10.1002/macp.1964.020780109": true,
"https://doi.org/10.1002/pol.1960.1204314211": true,
"https://doi.org/10.1002/pola.1990.080281021": true,
"https://doi.org/10.1007/s00289-020-03123-5": true,
"https://doi.org/10.1021/ma0201983": true,
"https://doi.org/10.1016/0032-3861(82)90020-9": true,
"https://doi.org/10.1002/pol.1961.1205015315": true,
"https://doi.org/10.1139/v51-031": true,
"https://doi.org/10.1002/macp.1967.021100123": true,
"https://doi.org/10.1002/app.30804": true,
"https://doi.org/10.1016/0032-3950(64)90237-0": true,
"https://doi.org/10.1002/app.13237": true,
"https://doi.org/10.1002/app.24328": true,
"https://doi.org/10.1039/TF9524800763": true,
"https://doi.org/10.1002/pi.4990270113": true,
"https://doi.org/10.1016/j.polymer.2004.09.068": true,
"https://doi.org/10.1002/app.20392": true,
"https://doi.org/10.1021/ja01184a053": true,
"https://doi.org/10.1002/pol.1966.110040810": true,
"https://doi.org/10.1002/app.2053": true,
"https://doi.org/10.1002/pol.1960.1204714901": true,
"https://doi.org/10.1002/pola.1992.080301024": true,
"https://doi.org/10.1021/ma50004a008": true,
"https://doi.org/10.1002/macp.1967.021040127": true,
"https://doi.org/10.1002/bscb.19560650514": true,
"https://doi.org/10.1002/pol.1983.170210806": true,
"https://doi.org/10.1002/pol.1958.1202711523": true,
"https://doi.org/10.1002/pola.10017": true,
"https://doi.org/10.1002/app.23879": true,
"https://doi.org/10.1080/00222338408056545": true,
"https://doi.org/10.1002/macp.1972.021530103": true,
"https://doi.org/10.1080/00222338408056553": true,
"https://doi.org/10.1295/koron1944.21.625": true,
"https://doi.org/10.1002/app.1393": true,
"https://doi.org/10.3390/polym12010097": true,
"https://doi.org/10.1016/0032-3950(64)90266-7": true,
"https://doi.org/10.1002/pol.1956.120209603": true,
"https://doi.org/10.1002/pola.20819": true,
"https://doi.org/10.1246/bcsj.41.543": true,
"https://doi.org/10.1021/ma60048a008": true,
"https://doi.org/10.1002/pol.1975.170130512": true,
"https://doi.org/10.1021/jo01346a010": true,
"https://doi.org/10.1002/pol.1979.170170424": true,
"https://doi.org/10.1002/actp.1992.010430112": true,
"https://doi.org/10.1002/apmc.1986.051390110": true,
"https://doi.org/10.1002/apmc.1982.051050109": true,
"https://doi.org/10.1002/pola.1995.080331410": true,
"https://doi.org/10.1002/app.1989.070370724": true,
"https://doi.org/10.1080/10601326808051881": true,
"https://doi.org/10.1139/v56-057": true,
"https://doi.org/10.1016/0032-3861(75)90103-2": true,
"https://doi.org/10.1002/app.1972.070160602": true,
"https://doi.org/10.1002/pol.1949.120040209": true,
"https://doi.org/10.1002/pola.1990.080280502": true,
"https://doi.org/10.1002/macp.1978.021790710": true,
"https://doi.org/10.1007/BF00255714": true,
"https://doi.org/10.1002/pol.1974.170121007": true,
"https://doi.org/10.1246/bcsj.38.1535": true,
"https://doi.org/10.1246/bcsj.53.3012": true,
"https://doi.org/10.1016/j.polymer.2006.07.048": true,
"https://doi.org/10.1002/pi.4990310411": true,
"Vysokomol. soedin. 3: No. 7, 1015\u20131019, 1961": false,
"https://doi.org/10.1295/polymj.21.519": true,
"https://doi.org/10.1295/koron1944.23.765": true,
"https://doi.org/10.1002/pol.1956.120219822": true,
"https://doi.org/10.1002/macp.1985.020101985116": true,
"https://doi.org/10.1081/ma-200056324": true,
"https://doi.org/10.1002/pol.1982.170200919": true,
"https://doi.org/10.1295/koron1944.26.593": true,
"https://doi.org/10.1002/apmc.1995.052310117": true,
"https://doi.org/10.1002/app.30961": true,
"https://doi.org/10.1002/app.1995.070571302": true,
"https://doi.org/10.1080/10543414.1999.10744527": true,
"https://doi.org/10.1515/epoly.2007.7.1.1593": true,
"https://doi.org/10.1002/pol.1961.1204915245": true,
"https://doi.org/10.1002/macp.1987.021880214": true,
"https://doi.org/10.1002/macp.1989.021900105": true,
"https://doi.org/10.1002/apmc.1994.052150113": true,
"https://doi.org/10.1002/pola.1990.080280110": true,
"https://doi.org/10.1002/pola.24204": true,
"https://doi.org/10.1515/epoly.2002.2.1.596": true,
"https://doi.org/10.1002/pol.1966.150041206": true,
"https://doi.org/10.1002/pola.26147": true,
"https://doi.org/10.1002/pol.1965.100030533": true,
"https://doi.org/10.1002/pola.10075": true,
"https://doi.org/10.1002/polc.5070230140": true,
"https://doi.org/10.1002/pol.1961.1205516128": true,
"https://doi.org/10.1002/macp.1989.021900914": true,
"https://doi.org/10.1002/pola.23216": true,
"https://doi.org/10.1002/macp.200900544": true,
"https://doi.org/10.1080/00222338108066433": true,
"https://doi.org/10.1002/masy.19920590108": true,
"https://doi.org/10.1002/macp.1997.021981127": true,
"https://doi.org/10.1002/pola.10433": true,
"https://doi.org/10.1002/pol.1970.150081207": true,
"https://doi.org/10.1002/bscb.19500590308": true,
"https://doi.org/10.1002/macp.1968.021190109": true,
"https://doi.org/10.1002/pol.1970.150080912": true,
"https://doi.org/10.1295/polymj.10.87": true,
"https://doi.org/10.1002/app.13296": true,
"https://doi.org/10.1002/pen.24688": true,
"https://doi.org/10.1002/app.47074": true,
"https://doi.org/10.1002/(sici)1097-4628(19960808)61_6_935__aid-app7_3.0.co;2-i": false,
"https://doi.org/10.1002/(SICI)1097-4628(19960808)61:6": false,
"https://doi.org/10.3390/molecules200915597": true,
"https://doi.org/10.1002/pol.1972.170101016": true,
"https://doi.org/10.1002/pola.1993.080310912": true,
"https://doi.org/10.35164/0554-2901-2023-1-2-21-26": true,
"https://doi.org/10.1002/macp.1965.020850109": true,
"https://doi.org/10.1002/pola.1992.080300102": true,
"https://doi.org/10.1002/macp.200600491": true,
"https://doi.org/10.1002/apmc.1972.050270114": true,
"https://doi.org/10.1002/app.33134": true,
"https://doi.org/10.1002/app.40949": true,
"https://doi.org/10.1002/macp.1979.021800416": true,
"https://doi.org/10.1002/macp.1989.021900312": true,
"https://doi.org/10.1002/app.20827": true,
"https://doi.org/10.1002/pola.21568": true,
"https://doi.org/10.1002/pol.1962.1205716563": true,
"https://doi.org/10.1002/macp.1974.021750319": true,
"https://doi.org/10.1002/pol.1969.150071203": true,
"https://doi.org/10.1002/macp.1991.021920424": true,
"https://doi.org/10.1002/pol.1963.100011107": true,
"https://doi.org/10.1002/macp.1965.020820102": true,
"https://doi.org/10.1002/app.34110": true,
"https://doi.org/10.1002/pol.1978.170161104": true,
"https://doi.org/10.1002/app.28099": true,
"https://doi.org/10.1002/app.27696": true,
"https://doi.org/10.1002/pol.1978.170160715": true,
"https://doi.org/10.1021/acs.macromol.8b01526.s001": true,
"https://doi.org/10.1002/macp.1994.021951203": true,
"https://doi.org/10.1002/pol.1979.170170217": true,
"https://doi.org/10.1002/pol.1980.170180808": true,
"https://doi.org/10.1002/app.36603": true,
"https://doi.org/10.1002/pol.1972.170101020": true,
"https://doi.org/10.1002/macp.1969.021260128": true,
"https://doi.org/10.1002/macp.1991.021921203": true,
"https://doi.org/10.1002/pol.1981.170190624": true,
"https://doi.org/10.1021/acs.macromol.6b01904": true,
"https://doi.org/10.1002/app.1979.070240122": true,
"https://doi.org/10.1002/pol.1977.170151212": true,
"https://doi.org/10.1002/pol.1964.100020928": true,
"https://doi.org/10.1002/macp.1977.021780314": true,
"https://doi.org/10.1002/app.32553": true,
"https://doi.org/10.1002/pol.1982.170200404": true,
"https://doi.org/10.1002/jccs.200900110": true,
"https://doi.org/10.1002/pola.1994.080321520": true,
"https://doi.org/10.1590/s0104-14281999000100005": true,
"https://doi.org/10.1002/pol.1983.170210805": true,
"https://doi.org/10.1021/ma401499v": true,
"https://doi.org/10.1002/macp.1985.021860913": true,
"https://doi.org/10.1002/pol.1978.170160113": true,
"https://doi.org/10.1002/pi.4833": true,
"https://doi.org/10.1002/pol.1965.100030801": true,
"https://doi.org/10.1002/pol.1978.170161217": true,
"https://doi.org/10.1002/pol.1967.150050820": true,
"https://doi.org/10.1002/macp.200700205": true,
"https://doi.org/10.1002/pol.1985.170230801": true,
"https://doi.org/10.1021/ma970413t": true,
"https://doi.org/10.1002/pi.850": true,
"https://doi.org/10.1002/macp.1970.021370108": true,
"https://doi.org/10.1002/bip.360220213": true,
"https://doi.org/10.1002/apmc.1983.051180110": true,
"https://doi.org/10.1002/pola.1987.080250219": true,
"https://doi.org/10.1002/pi.1666": true,
"https://doi.org/10.1002/pola.1989.080270508": true,
"https://doi.org/10.1002/app.1983.070280504": true,
"https://doi.org/10.3390/polym9040141": true,
"https://doi.org/10.1002/app.22682": true,
"https://doi.org/10.1002/pola.28178": true,
"https://doi.org/10.1002/anie.201607152": true,
"https://doi.org/10.1002/pola.10111": true,
"https://doi.org/10.1039/d4py00270a": true,
"https://doi.org/10.1002/pola.22488": true,
"https://doi.org/10.1002/macp.1996.021970112": true,
"https://doi.org/10.1002/macp.1991.021920612": true,
"https://doi.org/10.1002/pol.1977.170150204": true,
"https://doi.org/10.1002/pi.902": true,
"https://doi.org/10.1002/pol.1962.1205616421": true,
"https://doi.org/10.1021/jo01124a006": true,
"https://doi.org/10.1002/masy.200950816": true,
"https://doi.org/10.1002/bip.1978.360171207": true,
"https://doi.org/10.1002/mats.201200085": true,
"https://doi.org/10.1002/cjce.5450680613": true,
"https://doi.org/10.1002/macp.1976.021770506": true,
"https://doi.org/10.1080/00222338008081032": true,
"https://doi.org/10.1002/pi.6225": true,
"https://doi.org/10.1002/macp.1991.021920716": true,
"https://doi.org/10.1002/pol.1961.1205416011": true,
"https://doi.org/10.1080/10601329508011027": true,
"https://doi.org/10.1002/pola.20948": true,
"https://doi.org/10.1002/app.1992.070450512": true,
"https://doi.org/10.1002/apmc.1984.051280109": true,
"https://doi.org/10.1295/polymj.2.29": true,
"https://doi.org/10.1002/apmc.1985.051300111": true,
"https://doi.org/10.1021/acs.macromol.8b02280": true,
"https://doi.org/10.1002/pol.1981.170191018": true,
"https://doi.org/10.3390/polym11081266": true,
"https://doi.org/10.1002/pi.1036": true,
"https://doi.org/10.1002/pol.1966.150041026": true,
"https://doi.org/10.1002/pol.1968.150060520": true,
"https://doi.org/10.1021/ma00246a003": true,
"https://doi.org/10.1002/polc.5070640122": true,
"https://doi.org/10.1002/pola.23132": true,
"https://doi.org/10.1002/marc.1995.030161101": true,
"https://doi.org/10.1002/cjoc.20000180433": true,
"https://doi.org/10.1080/10601327508056948": true,
"https://doi.org/10.1002/macp.201300394": true,
"https://doi.org/10.1002/pi.4740": true,
"https://doi.org/10.1002/pola.23942": true,
"https://doi.org/10.1002/actp.1989.010400913": true,
"https://doi.org/10.1002/macp.1979.021800417": true,
"https://doi.org/10.1002/pola.1991.080291107": true,
"https://doi.org/10.1002/macp.201400167": true,
"https://doi.org/10.1002/mren.201400023": true,
"https://doi.org/10.1002/pola.28932": true,
"https://doi.org/10.1002/macp.1963.020660114": true,
"https://doi.org/10.1002/pol.1973.170111104": true,
"https://doi.org/10.1002/pola.1991.080290203": true,
"https://doi.org/10.1002/macp.1992.021930403": true,
"https://doi.org/10.1002/app.28112": true,
"https://doi.org/10.3390/molecules22040594": true,
"https://doi.org/10.1002/macp.1961.020490103": true,
"https://doi.org/10.1002/pola.23446": true,
"https://doi.org/10.1002/pol.1966.150041010": true,
"https://doi.org/10.1021/acsmacrolett.5b00379": true,
"https://doi.org/10.1002/pola.1989.080270416": true,
"https://doi.org/10.1002/app.1995.070570803": true,
"https://doi.org/10.1002/pol.1965.100030226": true,
"https://doi.org/10.1002/marc.1991.030120811": true,
"https://doi.org/10.1002/pol.1964.100020724": true,
"https://doi.org/10.1002/macp.1993.021940307": true,
"https://doi.org/10.1002/macp.1966.020940124": true,
"https://doi.org/10.1002/app.23820": true,
"https://doi.org/10.5254/1.3542180": true,
"https://doi.org/10.1002/cctc.201300802": true,
"https://doi.org/10.1002/pol.1972.150100612": true,
"https://doi.org/10.1002/adv.2000": true,
"https://doi.org/10.1002/app.33621": true,
"https://doi.org/10.1002/macp.1965.020880103": true,
"https://doi.org/10.1002/marc.1996.030170901": true,
"https://doi.org/10.1002/pol.1964.100020533": true,
"https://doi.org/10.1002/pola.21292": true,
"https://doi.org/10.1002/pola.26783": true,
"https://doi.org/10.1002/pol.1961.1205115604": true,
"https://doi.org/10.1002/1097-4628(20001003)78_1_190__aid-app230_3.0.co;2-m": false,
"https://doi.org/10.1002/1097-4628(20001003)78:1": false,
"https://doi.org/10.1002/app.26032": true,
"https://doi.org/10.3891/acta.chem.scand.40b-0060": true,
"https://doi.org/10.1002/(sici)1099-1581(199805)9_5_290__aid-pat756_3.0.co;2-p": false,
"https://doi.org/10.1002/(SICI)1099-1581(199805)9:5": false,
"https://doi.org/10.1002/pola.21379": true,
"https://doi.org/10.1002/macp.201200107": true,
"https://doi.org/10.1002/app.1995.070570301": true,
"https://doi.org/10.1002/marc.1996.030170501": true,
"https://doi.org/10.1002/pola.26668": true,
"https://doi.org/10.1002/macp.1995.021961210": true,
"https://doi.org/10.1002/pola.20495": true,
"https://doi.org/10.1002/pol.1977.170151120": true,
"https://doi.org/10.1002/pol.1982.170201019": true,
"https://doi.org/10.1002/pol.1956.120219807": true,
"https://doi.org/10.1002/pol.1962.1205916818": true,
"https://doi.org/10.1002/pol.1980.170180623": true,
"https://doi.org/10.1002/pola.22765": true,
"https://doi.org/10.1002/pat.5232": true,
"https://doi.org/10.1002/pola.1990.080280726": true,
"https://doi.org/10.1002/pol.1959.1203713221": true,
"https://doi.org/10.1002/pol.1971.150090108": true,
"https://doi.org/10.1002/pola.1989.080270124": true,
"https://doi.org/10.5254/1.3543489": true,
"https://doi.org/10.1002/apmc.1977.050650103": true,
"https://doi.org/10.1021/ma035587r": true,
"https://doi.org/10.1002/masy.19900350106": true,
"https://doi.org/10.1002/pol.1980.170180418": true,
"https://doi.org/10.1002/pol.1980.170181209": true,
"https://doi.org/10.1002/pola.10340": true,
"https://doi.org/10.1002/pol.1968.150060527": true,
"https://doi.org/10.1246/nikkashi1898.73.5_1062": true,
"https://doi.org/10.1002/app.25480": true,
"https://doi.org/10.1002/app.1989.070381112": true,
"https://doi.org/10.1002/pol.1984.170221104": true,
"https://doi.org/10.1002/pol.1980.170180320": true,
"https://doi.org/10.1002/pi.1174": true,
"https://doi.org/10.1002/app.49349": true,
"https://doi.org/10.1002/macp.1985.021860104": true,
"https://doi.org/10.1002/macp.200600120": true,
"https://doi.org/10.1002/pola.22421": true,
"https://doi.org/10.3390/polym11030554": true,
"https://doi.org/10.1002/pola.1988.080260109": true,
"https://doi.org/10.1002/masy.200650803": true,
"https://doi.org/10.1002/macp.1967.021090113": true,
"https://doi.org/10.1002/(sici)1521-3935(19990601)200_6_1340__aid-macp1340_3.0.co;2-w": false,
"https://doi.org/10.1002/(SICI)1521-3935(19990601)200:6<1340::AID-MACP1340>3.0.CO;2-W": true,
"https://doi.org/10.1002/app.24205": true,
"https://doi.org/10.1002/masy.19981270113": true,
"https://doi.org/10.3390/polym9060231": true,
"https://doi.org/10.3390/polym7101496": true,
"https://doi.org/10.1295/polymj.33.102": true,
"https://doi.org/10.1021/acsmacrolett.6b00701": true,
"https://doi.org/10.1002/macp.1973.021690109": true,
"https://doi.org/10.1002/app.11448": true,
"https://doi.org/10.1002/pol.1965.100030811": true,
"https://doi.org/10.1002/app.37741": true,
"https://doi.org/10.1002/pola.10395": true,
"https://doi.org/10.1002/masy.19910470117": true,
"https://doi.org/10.1002/marc.200700875": true,
"https://doi.org/10.1002/actp.1987.010381107": true,
"https://doi.org/10.1002/pol.1964.100020934": true,
"https://doi.org/10.1002/macp.1990.021911201": true,
"https://doi.org/10.1002/app.1991.070421104": true,
"https://doi.org/10.1002/pol.1980.170180414": true,
"https://doi.org/10.1002/pol.1961.1205416020": true,
"https://doi.org/10.1002/polb.10400": true,
"https://doi.org/10.1002/app.1982.070270808": true,
"https://doi.org/10.1002/macp.1991.021920818": true,
"https://doi.org/10.21285/2227-2925-2021-11-4-517-522": true,
"https://doi.org/10.1002/pola.22051": true,
"https://doi.org/10.1002/app.1994.070510402": true,
"https://doi.org/10.1002/pol.1966.150041216": true,
"https://doi.org/10.1002/masy.201051017": true,
"https://doi.org/10.1002/pola.1994.080320602": true,
"https://doi.org/10.1002/app.1979.070230504": true,
"https://doi.org/10.1002/pol.1968.150061101": true,
"https://doi.org/10.1002/pola.10198": true,
"https://doi.org/10.1002/polc.5070500109": true,
"https://doi.org/10.1002/app.29381": true,
"https://doi.org/10.1002/pol.1975.170130501": true,
"https://doi.org/10.1002/macp.1993.021940117": true,
"https://doi.org/10.1002/pola.21153": true,
"https://doi.org/10.1002/pola.20555": true,
"https://doi.org/10.1002/pola.20105": true,
"https://doi.org/10.1002/pola.21651": true,
"https://doi.org/10.1002/apmc.1993.052130108": true,
"https://doi.org/10.3390/polym13050778": true,
"https://doi.org/10.1002/pola.1312": true,
"https://doi.org/10.1002/app.32298": true,
"https://doi.org/10.1002/macp.201800189": true,
"https://doi.org/10.1002/pol.1970.150080607": true,
"https://doi.org/10.1002/pol.1979.170170620": true,
"https://doi.org/10.1021/ma00154a012": true,
"https://doi.org/10.1021/ma070944+": true,
"https://doi.org/10.1002/pola.28431": true,
"https://doi.org/10.1002/pol.1968.150060815": true,
"https://doi.org/10.1002/pol.1979.170170323": true,
"https://doi.org/10.1002/macp.1974.021751109": true,
"https://doi.org/10.1002/pola.26182": true,
"https://doi.org/10.1002/macp.1967.021100106": true,
"https://doi.org/10.1002/app.1988.070350314": true,
"https://doi.org/10.1002/pol.1966.150041105": true,
"https://doi.org/10.1002/pol.1970.150080217": true,
"https://doi.org/10.1002/pol.1966.150041104": true,
"https://doi.org/10.1002/polc.5070420127": true,
"https://doi.org/10.3390/polym12081808": true,
"https://doi.org/10.1002/polc.5070550110": true,
"https://doi.org/10.1002/pola.1992.080300410": true,
"https://doi.org/10.1002/macp.1992.021930517": true,
"https://doi.org/10.1002/macp.201400136": true,
"https://doi.org/10.1002/pat.373": true,
"https://doi.org/10.1002/macp.1991.021920618": true,
"https://doi.org/10.1002/pol.1979.170170621": true,
"https://doi.org/10.1002/app.1971.070150717": true,
"https://doi.org/10.1002/macp.1994.021950531": true,
"https://doi.org/10.1002/polc.5070160448": true,
"https://doi.org/10.1002/pol.1979.170170226": true,
"https://doi.org/10.1002/pola.11065": true,
"https://doi.org/10.1002/pol.1981.170190316": true,
"https://doi.org/10.1002/macp.1989.021900929": true,
"https://doi.org/10.3390/polym12010089": true,
"https://doi.org/10.1002/pola.1313": true,
"https://doi.org/10.1002/pol.1982.170200927": true,
"https://doi.org/10.1002/mren.201400048": true,
"https://doi.org/10.1002/masy.19920630117": true,
"https://doi.org/10.1002/polb.10339": true,
"https://doi.org/10.1002/pola.1986.080240907": true,
"https://doi.org/10.1002/pol.1975.170130804": true,
"https://doi.org/10.1002/macp.200300118": true,
"https://doi.org/10.1002/pol.1967.150050503": true,
"https://doi.org/10.1002/pi.1568": true,
"https://doi.org/10.1002/macp.1968.021160120": true,
"https://doi.org/10.1002/macp.1964.020790116": true,
"https://doi.org/10.1002/app.1995.070560612": true,
"https://doi.org/10.1002/pol.1963.110010903": true,
"https://doi.org/10.1002/pola.10422": true,
"https://doi.org/10.1021/ma034730d": true,
"https://doi.org/10.1002/pol.1970.150081216": true,
"https://doi.org/10.18038/aubtda.306626": true,
"https://doi.org/10.1002/pola.1994.080321116": true,
"https://doi.org/10.1002/app.1988.070350102": true,
"https://doi.org/10.1002/ange.201808836": true,
"https://doi.org/10.1002/marc.1995.030160805": true,
"https://doi.org/10.1246/nikkashi1898.69.142": true,
"https://doi.org/10.1002/pol.1982.170200803": true,
"https://doi.org/10.1002/macp.1991.021920614": true,
"https://doi.org/10.1002/app.1992.070451217": true,
"https://doi.org/10.1002/app.13032": true,
"https://doi.org/10.1002/polc.5070420306": true,
"https://doi.org/10.1002/mren.201400068": true,
"https://doi.org/10.1002/pol.1963.100010117": true,
"https://doi.org/10.1002/masy.19870100119": true,
"https://doi.org/10.1002/macp.1985.021860914": true,
"https://doi.org/10.1002/pol.1982.170200511": true,
"https://doi.org/10.1002/macp.1961.020430105": true,
"https://doi.org/10.3390/polym12112509": true,
"https://doi.org/10.1002/app.31817": true,
"https://doi.org/10.1002/app.44014": true,
"https://doi.org/10.1002/app.20355": true,
"https://doi.org/10.1002/pol.1963.100010906": true,
"https://doi.org/10.1002/app.1981.070260726": true,
"https://doi.org/10.1002/pi.4990310209": true,
"https://doi.org/10.1246/bcsj.39.2458": true,
"https://doi.org/10.1002/macp.1997.021980414": true,
"https://doi.org/10.1002/pol.1964.100020702": true,
"https://doi.org/10.1002/pol.1962.1205716552": true,
"https://doi.org/10.1002/pol.1984.170220217": true,
"https://doi.org/10.1002/pat.754": true,
"https://doi.org/10.1002/macp.200350065": true,
"https://doi.org/10.1002/pol.1984.170221113": true,
"https://doi.org/10.1002/app.1989.070381105": true,
"https://doi.org/10.1002/macp.1992.021930219": true,
"https://doi.org/10.1002/pol.1976.170140110": true,
"https://doi.org/10.1002/app.27107": true,
"https://doi.org/10.1002/pola.26398": true,
"https://doi.org/10.1021/ma011805+": true,
"https://doi.org/10.1002/macp.1972.021530104": true,
"https://doi.org/10.1002/pol.1965.100030813": true,
"https://doi.org/10.32508/stdj.v22i1.1020": true,
"https://doi.org/10.1002/app.30747": true,
"https://doi.org/10.1002/marc.202000513": true,
"https://doi.org/10.1002/app.1972.070160408": true,
"https://doi.org/10.1021/acs.macromol.8b01368": true,
"https://doi.org/10.1002/ange.202106682": true,
"https://doi.org/10.1002/macp.201200421": true,
"https://doi.org/10.1002/pol.1979.170171204": true,
"https://doi.org/10.1002/app.1992.070440901": true,
"https://doi.org/10.3390/polym12102273": true,
"https://doi.org/10.1002/macp.1980.021810110": true,
"https://doi.org/10.1002/apmc.1992.052010104": true,
"https://doi.org/10.1002/pol.1982.170201211": true,
"https://doi.org/10.1002/app.1985.070300104": true,
"https://doi.org/10.1002/pola.20170": true,
"https://doi.org/10.1002/macp.1984.021851119": true,
"https://doi.org/10.1002/pi.4980130107": true,
"https://doi.org/10.1002/pola.23249": true,
"https://doi.org/10.1002/masy.19920630118": true,
"https://doi.org/10.1002/pol.1978.170160707": true,
"https://doi.org/10.1002/pol.1964.100021002": true,
"https://doi.org/10.1002/marc.1996.030170908": true,
"https://doi.org/10.1246/bcsj.36.1459": true,
"https://doi.org/10.1002/pol.1978.170161116": true,
"https://doi.org/10.1002/mren.201100009": true,
"https://doi.org/10.5254/1.3544837": true,
"https://doi.org/10.1002/apmc.1973.050280109": true,
"https://doi.org/10.1002/mats.1997.040060503": true,
"https://doi.org/10.1002/pol.1985.170230307": true,
"https://doi.org/10.1002/app.10689": true,
"https://doi.org/10.1002/pol.1966.150040409": true,
"https://doi.org/10.1002/pol.1980.170180119": true,
"https://doi.org/10.1002/macp.201300446": true,
"https://doi.org/10.1002/masy.19880190119": true,
"https://doi.org/10.1002/app.1989.070381106": true,
"https://doi.org/10.1002/cctc.201901114": true,
"https://doi.org/10.1515/pac-2013-1118": true,
"https://doi.org/10.1002/macp.200390057": true,
"https://doi.org/10.1002/pola.22730": true,
"https://doi.org/10.1002/pola.10704": true,
"https://doi.org/10.1002/pol.1981.170190118": true,
"https://doi.org/10.1002/pola.26118": true,
"https://doi.org/10.1002/pola.1994.080321119": true,
"https://doi.org/10.1515/epoly.2006.6.1.388": true,
"https://doi.org/10.1002/app.1995.070550706": true,
"https://doi.org/10.1002/macp.1996.021970212": true,
"https://doi.org/10.1002/asia.201000668": true,
"https://doi.org/10.1002/app.10918": true,
"https://doi.org/10.1002/macp.1960.020410102": true,
"https://doi.org/10.1002/apmc.1982.051030109": true,
"https://doi.org/10.1002/pi.1117": true,
"https://doi.org/10.1002/pol.1962.1205716567": true,
"https://doi.org/10.1002/pola.22069": true,
"https://doi.org/10.1002/pola.1986.080240314": true,
"https://doi.org/10.1002/macp.1962.020560104": true,
"https://doi.org/10.1002/pi.1906": true,
"https://doi.org/10.1002/pola.20795": true,
"https://doi.org/10.1002/pol.1978.170161120": true,
"https://doi.org/10.1002/macp.1975.021761007": true,
"https://doi.org/10.1002/pol.1979.170171025": true,
"https://doi.org/10.1002/pola.20003": true,
"https://doi.org/10.1002/macp.1992.021930902": true,
"https://doi.org/10.1002/macp.1983.021840620": true,
"https://doi.org/10.1002/pola.26568": true,
"https://doi.org/10.1021/ma9812534": true,
"https://doi.org/10.1002/macp.1992.021930914": true,
"https://doi.org/10.1002/pola.1989.080270110": true,
"https://doi.org/10.1002/macp.1994.021950420": true,
"https://doi.org/10.1002/pol.1975.170130201": true,
"https://doi.org/10.1002/zaac.202100183": true,
"https://doi.org/10.1002/mats.200390028": true,
"https://doi.org/10.1002/macp.1991.021920508": true,
"https://doi.org/10.1002/pola.1991.080290512": true,
"https://doi.org/10.21608/ejchem.2022.112096.5091": true,
"https://doi.org/10.1002/pol.1959.1203913519": true,
"https://doi.org/10.1002/actp.1985.010360402": true,
"https://doi.org/10.1139/v66-402": true,
"https://doi.org/10.1002/pola.22842": true,
"https://doi.org/10.1002/(sici)1097-4628(19990815)73_7_1153__aid-app7_3.0.co;2-d": false,
"https://doi.org/10.1002/(SICI)1097-4628(19990815)73:7<1153::AID-APP7>3.0.CO;2-D": true,
"https://doi.org/10.1002/pola.24996": true,
"https://doi.org/10.1002/pola.20890": true,
"https://doi.org/10.1002/ange.201603129": true,
"https://doi.org/10.1295/polymj.23.1387": true,
"https://doi.org/10.1021/acs.iecr.1c00104": true,
"https://doi.org/10.1002/app.26125": true,
"https://doi.org/10.1002/app.22473": true,
"https://doi.org/10.1002/macp.1979.021800310": true,
"https://doi.org/10.1002/macp.200600513": true,
"https://doi.org/10.1002/macp.1975.021760513": true,
"https://doi.org/10.1002/pol.1964.100020937": true,
"https://doi.org/10.1002/macp.1977.021780409": true,
"https://doi.org/10.1246/nikkashi1898.69.137": true,
"https://doi.org/10.1002/app.28301": true,
"https://doi.org/10.1002/aic.14439": true,
"https://doi.org/10.1002/macp.1964.020780114": true,
"https://doi.org/10.1002/pol.1967.150050517": true,
"https://doi.org/10.1002/app.39455": true,
"https://doi.org/10.1002/pi.822": true,
"https://doi.org/10.1002/app.1993.070480414": true,
"https://doi.org/10.1002/pol.1974.170120915": true,
"https://doi.org/10.1002/pol.1975.170130406": true,
"https://doi.org/10.1002/pol.1972.150100207": true,
"https://doi.org/10.1002/pola.26504": true,
"https://doi.org/10.1002/pola.22814": true,
"https://doi.org/10.1002/pola.10820": true,
"https://doi.org/10.1002/pi.4980220108": true,
"https://doi.org/10.3390/molecules16054122": true,
"https://doi.org/10.1002/pola.1994.080321505": true,
"https://doi.org/10.1002/pi.6313": true,
"https://doi.org/10.1002/pol.1977.170150518": true,
"https://doi.org/10.1002/pola.1990.080280504": true,
"https://doi.org/10.1002/app.10542": true,
"https://doi.org/10.1002/pol.1968.150060528": true,
"https://doi.org/10.1002/pola.1991.080290513": true,
"https://doi.org/10.1002/masy.201151008": true,
"https://doi.org/10.3390/polym12040744": true,