-
Notifications
You must be signed in to change notification settings - Fork 1
/
instance.ttl
6587 lines (4945 loc) · 170 KB
/
instance.ttl
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
@prefix ex: <http://straKG.org/> .
ex:Aerbasayi_Fm ex:hasCname "阿尔巴萨依组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371001" .
ex:Agulugou_Fm ex:hasCname "阿古鲁沟组" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225001" .
ex:Aierjigan_Gr ex:hasCname "爱尔基干群" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225002" .
ex:Aiketike_Gr ex:hasCname "艾克提克群" ;
ex:hasGeotime "C" ;
ex:hasSerialNumber "360001" .
ex:Ailaoshan_Gr ex:hasCname "哀牢山群" ;
ex:hasGeotime "Pt1-3" ;
ex:hasSerialNumber "280002" .
ex:Ailegemiao_Fm ex:hasCname "艾勒格庙组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231002" .
ex:Aiqiling_Fm ex:hasCname "埃歧岭组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242001" .
ex:Akesu_Gr ex:hasCname "阿克苏群" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221001" .
ex:Aladeyikesai_Fm ex:hasCname "阿腊德依克赛组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362001" .
ex:Alashan_Gr ex:hasCname "阿拉善岩群" ;
ex:hasGeotime "Ar3-Pt1" ;
ex:hasSerialNumber "150003" .
ex:Aletonggou_Fm ex:hasCname "阿勒通沟组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241001" .
ex:Along_Fm ex:hasCname "阿龙组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210001" .
ex:Amunike_Fm ex:hasCname "阿木尼克组" ;
ex:hasGeotime "D3-C1" ;
ex:hasSerialNumber "357007" .
ex:Amushan_Fm ex:hasCname "阿木山组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362002" .
ex:Angjie_Fm ex:hasCname "昂杰组" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365004" .
ex:Anjicun_Mem ex:hasCname "安吉村段" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210002" .
ex:Anlelin_Fm ex:hasCname "安乐林组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220001" .
ex:Anshan_Gr ex:hasCname "鞍山群" ;
ex:hasGeotime "Ar" ;
ex:hasSerialNumber "100001" .
ex:Aoertu_Fm ex:hasCname "奥尔吐组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362005" .
ex:Aojiao_Gr ex:hasCname "澳角群" ;
ex:hasGeotime "AnD" ;
ex:hasSerialNumber "359001" .
ex:Aojiatan_Fm ex:hasCname "奥家滩(岩)组" ;
ex:hasGeotime "Ar2-3" ;
ex:hasSerialNumber "140001" .
ex:Aoqu_Fm ex:hasCname "骜曲组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362006" .
ex:Aoyougou_Fm ex:hasCname "熬油沟组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221002" .
ex:Aqia_Gr ex:hasCname "阿恰群" ;
ex:hasGeotime "P" ;
ex:hasSerialNumber "370001" .
ex:Aqikebaxi_Fm ex:hasCname "阿其克巴西组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231001" .
ex:Aqikebulake_Fm ex:hasCname "阿其克布拉克组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371002" .
ex:Ayilihe_Fm ex:hasCname "阿衣里河组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362003" .
ex:Azigan_Fm ex:hasCname "阿孜干组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362004" .
ex:Bachu_Fm ex:hasCname "巴楚组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361001" .
ex:Bada_Fm ex:hasCname "坝达组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361004" .
ex:Badaojian_Fm ex:hasCname "八道尖(岩)组" ;
ex:hasGeotime "Z-D" ;
ex:hasSerialNumber "249013" .
ex:Badaojiang_Fm ex:hasCname "八道江组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240001" .
ex:Badu_Fm ex:hasCname "巴都组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361002" .
ex:Badu_Gr ex:hasCname "八都(岩)群" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210003" .
ex:Bagongshan_Gr ex:hasCname "八公山群" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231003" .
ex:Baicaoping_Fm ex:hasCname "白草坪组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220002" .
ex:Baidingpu_Fm ex:hasCname "白定浦组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371007" .
ex:Baifangzi_Fm ex:hasCname "白房子组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231005" .
ex:Baihelong_Fm ex:hasCname "百合垄组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230003" .
ex:Baijiadian_Fm ex:hasCname "白家店组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364002" .
ex:Bailongshan_Fm ex:hasCname "白龙山组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210004" .
ex:Bainaimiao_Fm ex:hasCname "白乃庙组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231006" .
ex:Baishahe_Fm ex:hasCname "白沙河(岩)组" ;
ex:hasGeotime "Ar-Pt1" ;
ex:hasSerialNumber "150018" .
ex:Baishan_Fm ex:hasCname "白山组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361005" .
ex:Baishatouzhou_Fm ex:hasCname "白沙头洲组" ;
ex:hasGeotime "D2-3" ;
ex:hasSerialNumber "356003" .
ex:Baishugou_Fm ex:hasCname "白术沟组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231007" .
ex:Baiyanggou_Gr ex:hasCname "白杨沟群" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240002" .
ex:Baiyinbaolage_Fm ex:hasCname "白音宝拉格组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231008" .
ex:Baiyunebo_Gr ex:hasCname "白云鄂博群" ;
ex:hasGeotime "Ch-Qn" ;
ex:hasSerialNumber "224001" .
ex:Baiyunshan_Fm ex:hasCname "白云山(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210005" .
ex:Baizhiyan_Fm ex:hasCname "柏枝(岩)组" ;
ex:hasGeotime "Ar3" ;
ex:hasSerialNumber "130001" .
ex:Baizhu_Fm ex:hasCname "白竹组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230002" .
ex:Baizuo_Fm ex:hasCname "摆佐组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364003" .
ex:Balediertage_Fm ex:hasCname "巴勒迪尔塔格组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371003" .
ex:Bali_Fm ex:hasCname "坝里组" ;
ex:hasGeotime "Z1-2" ;
ex:hasSerialNumber "243001" .
ex:Balikelike_Fm ex:hasCname "巴立克立克组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371004" .
ex:Baliu_Fm ex:hasCname "坝溜组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371006" .
ex:Baliya_Fm ex:hasCname "八里垭组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230001" .
ex:Bancheng_Fm ex:hasCname "板城组" ;
ex:hasGeotime "C1-P1" ;
ex:hasSerialNumber "365001" .
ex:Banfanggou_Fm ex:hasCname "板房沟(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210006" .
ex:Bangchuigou_Fm ex:hasCname "棒棰沟组" ;
ex:hasGeotime "E" ;
ex:hasSerialNumber "QH!!b136" .
ex:Banqiao_Fm ex:hasCname "板桥(岩)组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220003" .
ex:Banqiaoshan_Fm ex:hasCname "板桥山组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242003" .
ex:Banshigou_Fm ex:hasCname "板石沟(岩)组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220004" .
ex:Banxi_Gr ex:hasCname "板溪群" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230004" .
ex:Banyukou_Fm ex:hasCname "板峪口(岩)组" ;
ex:hasGeotime "Ar-Pt" ;
ex:hasSerialNumber "150016" .
ex:Baoban_Gr ex:hasCname "抱板群" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221004" .
ex:Baofengzhai_Mem ex:hasCname "宝峰寨段" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220005" .
ex:Baogutu_Fm ex:hasCname "包古图组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364004" .
ex:Baoligaomiao_Fm ex:hasCname "宝力高庙组" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365005" .
ex:Baolinchong_Fm ex:hasCname "宝林冲组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230005" .
ex:Baomoshan_Fm ex:hasCname "包磨山组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371008" .
ex:Baoshankou_Fm ex:hasCname "豹山口组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240003" .
ex:Baoshi_Fm ex:hasCname "宝石组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241002" .
ex:Baotege_Fm ex:hasCname "包特格组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371009" .
ex:Baping_Fm ex:hasCname "巴平组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364001" .
ex:Baqi_Fm ex:hasCname "巴漆组" ;
ex:hasGeotime "D2-3" ;
ex:hasSerialNumber "356002" .
ex:Bashikuergan_Gr ex:hasCname "巴什库尔干群" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221003" .
ex:Bashisuogong_Fm ex:hasCname "巴什索贡组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361003" .
ex:Basiergan_Fm ex:hasCname "巴斯尔干组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372001" .
ex:Batamayineishan_Fm ex:hasCname "巴塔玛依内山组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362007" .
ex:Bayinhe_Gr ex:hasCname "巴音河群" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371005" .
ex:Bazhukeng_Fm ex:hasCname "拔竹坑组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231004" .
ex:Baziping_Fm ex:hasCname "八子坪组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242002" .
ex:Beidajian_Fm ex:hasCname "北大尖组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220006" .
ex:Beidaxing_Fm ex:hasCname "北大兴组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210007" .
ex:Beijiangjun_Fm ex:hasCname "北将军(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210008" .
ex:Beiketan_Fm ex:hasCname "贝克滩组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221005" .
ex:Beikuanhe_Fm ex:hasCname "北宽河组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230006" .
ex:Beiluotai_Fm ex:hasCname "悖罗台组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210010" .
ex:Beimenxia_Fm ex:hasCname "北门峡组" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225003" .
ex:Beiqilianshan_Ophilite_Gr ex:hasCname "北祁连山蛇绿岩群" ;
ex:hasGeotime "Z-O2" ;
ex:hasSerialNumber "249021" .
ex:Beisainaertage_Fm ex:hasCname "北塞纳尔塔格组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231009" .
ex:Beishihe_Fm ex:hasCname "北师河组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230007" .
ex:Beiwu_Fm ex:hasCname "北坞组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220007" .
ex:Beixing_Fm ex:hasCname "北兴组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361006" .
ex:Beiyashan_Fm ex:hasCname "北崖山组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210009" .
ex:Beiyixi_Fm ex:hasCname "贝义西组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241003" .
ex:Benbatu_Fm ex:hasCname "本巴图组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362008" .
ex:Benxi_Fm ex:hasCname "本溪组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364005" .
ex:Benzilan_Fm ex:hasCname "奔子栏组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372002" .
ex:Biegaizi_Fm ex:hasCname "鳖盖子组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221006" .
ex:Biegentawu_Fm ex:hasCname "别根他乌组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362009" .
ex:Bikou_Gr ex:hasCname "碧口(岩)群" ;
ex:hasGeotime "Pt2-3(Ch1 AnZ)" ;
ex:hasSerialNumber "280004" .
ex:Bilute_Fm ex:hasCname "比鲁特组" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225004" .
ex:Bingfeng_Fm ex:hasCname "冰峰组" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365006" .
ex:Binggou_Gr ex:hasCname "冰沟群" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225005" .
ex:Binggounan_Fm ex:hasCname "冰沟南组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231010" .
ex:Bingma_Fm ex:hasCname "丙麻组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371011" .
ex:Bingmagou_Fm ex:hasCname "兵马沟组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221007" .
ex:Bingying_Fm ex:hasCname "兵营组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210012" .
ex:Biyoulebaoguzi_Fm ex:hasCname "比尤勒包谷孜组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372003" .
ex:Biyunshan_Fm ex:hasCname "碧云山组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371010" .
ex:Bizigou_Fm ex:hasCname "篦子沟组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210011" .
ex:Bochatetage_Gr ex:hasCname "博查特塔格群" ;
ex:hasGeotime "Jx" ;
ex:hasSerialNumber "225006" .
ex:Bocigou_Fm ex:hasCname "菠茨沟组" ;
ex:hasGeotime "P2-T1" ;
ex:hasSerialNumber "388002" .
ex:Bogenligou_Fm ex:hasCname "播根里沟组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230008" .
ex:Bojiwan_Fm ex:hasCname "簸箕湾组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361007" .
ex:Bolunganbulake_Fm ex:hasCname "泊仑干布拉克组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221009" .
ex:Boluositanmiao_Fm ex:hasCname "波罗斯坦庙组" ;
ex:hasGeotime "Ar3-Pt1" ;
ex:hasSerialNumber "150004" .
ex:Boqu_Fm ex:hasCname "波曲组" ;
ex:hasGeotime "D2+3" ;
ex:hasSerialNumber "356001" .
ex:Bowamu_Gr ex:hasCname "波瓦姆群" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221008" .
ex:Bukatuwei_Fm ex:hasCname "布卡吐维组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221010" .
ex:Buqingshan_Gr ex:hasCname "布青山群" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365007" .
ex:Caibei_Limestone_Bed ex:hasCname "彩北石灰岩层" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362011" .
ex:Caijia_Mem ex:hasCname "彩家段" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372004" .
ex:Cameng_Fm ex:hasCname "擦蒙组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362010" .
ex:Cangfanggou_Gr ex:hasCname "仓房沟群" ;
ex:hasGeotime "P2-T1" ;
ex:hasSerialNumber "388003" .
ex:Cangshan_Gr ex:hasCname "苍山群" ;
ex:hasGeotime "Pt2-3" ;
ex:hasSerialNumber "260001" .
ex:Caodaban_Fm ex:hasCname "草大坂组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242004" .
ex:Caodian_Gr ex:hasCname "曹店组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231011" .
ex:Caodigou_Fm ex:hasCname "草地沟组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371012" .
ex:Caoliangyi_Fm ex:hasCname "草凉驿组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362012" .
ex:Caoqu_Gr ex:hasCname "草曲群" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230009" .
ex:Caozhuang_Gr ex:hasCname "曹庄(岩)群" ;
ex:hasGeotime "Ar1" ;
ex:hasSerialNumber "110001" .
ex:Ceshui_Fm ex:hasCname "测水组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361008" .
ex:Ceyu_Gr ex:hasCname "测鱼群" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221011" .
ex:Chaergelahe_Fm ex:hasCname "查尔格拉河组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361009" .
ex:Chafanzi_Mem ex:hasCname "茶坊子段" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220008" .
ex:Chagouquan_Fm ex:hasCname "岔沟泉组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231012" .
ex:Chaguoluoma_Fm ex:hasCname "查果罗玛组" ;
ex:hasGeotime "D2,C1" ;
ex:hasSerialNumber "357001" .
ex:Chahushan_Mem ex:hasCname "茶壶山段" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220009" .
ex:Chamagong_Gr\(Chamashan_Gr\) ex:hasCname "查马贡群(茶马山群)" ;
ex:hasGeotime "Z-∈1-2" ;
ex:hasSerialNumber "249006" .
ex:Changan_Fm ex:hasCname "长安组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241004" .
ex:Changchong_Fm ex:hasCname "长冲(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210013" .
ex:Changchun_Fm ex:hasCname "长春组" ;
ex:hasGeotime "AnR" ;
ex:hasSerialNumber "c63 " .
ex:Changkenshui_Fm ex:hasCname "长坑水组" ;
ex:hasGeotime "1-2" ;
ex:hasSerialNumber "QH!!c68 " .
ex:Changlai_Fm ex:hasCname "长土多组" ;
ex:hasGeotime "D3-C1" ;
ex:hasSerialNumber "357008" .
ex:Changlingzi_Fm ex:hasCname "长岭子组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240005" .
ex:Changning_Fm ex:hasCname "昌宁组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240004" .
ex:Changpaitou_Fm ex:hasCname "长排头组" ;
ex:hasGeotime "P" ;
ex:hasSerialNumber "370002" .
ex:Changshushan_Fm ex:hasCname "长树山(岩)组" ;
ex:hasGeotime "Ar2-3" ;
ex:hasSerialNumber "140002" .
ex:Changxing_Fm ex:hasCname "长兴组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372005" .
ex:Changyanwo_Fm ex:hasCname "长岩窝组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364006" .
ex:Changyao_Fm ex:hasCname "常窑组" ;
ex:hasGeotime "Ar3" ;
ex:hasSerialNumber "130002" .
ex:Changyucun_Fm ex:hasCname "长育村组" ;
ex:hasGeotime "D2-3" ;
ex:hasSerialNumber "356004" .
ex:Changzhougou_Fm ex:hasCname "常州沟组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221012" .
ex:Chaotiehe_Fm ex:hasCname "炒铁河组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210014" .
ex:Chaotugou_Fm ex:hasCname "朝吐沟组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361011" .
ex:Chaowangping_Fm ex:hasCname "朝王坪组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220010" .
ex:Chaoyang_Fm ex:hasCname "朝阳组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242005" .
ex:Chaya_Mem ex:hasCname "查雅段" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365008" .
ex:Chayepo_Fm ex:hasCname "茶叶坡组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361010" .
ex:Chayu\(Zayu\)Fm ex:hasCname "查隅组" ;
ex:hasGeotime "O2" ;
ex:hasSerialNumber "QH!!c44 " .
ex:Chencai_Gr ex:hasCname "陈蔡群" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220011" .
ex:Chengdaogou_Fm ex:hasCname "程道沟组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210016" .
ex:Chengjiang_Fm ex:hasCname "澄江组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241005" .
ex:Chengqianggou_Fm ex:hasCname "城墙沟组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361012" .
ex:Chengshan_Fm ex:hasCname "城山组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230010" .
ex:Chenjiajian_Fm ex:hasCname "陈家涧组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221013" .
ex:Chenjiashan_Fm ex:hasCname "陈家山组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210015" .
ex:Chetou_Fm ex:hasCname "车头组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371013" .
ex:Chidantang_Fm ex:hasCname "赤丹潭组" ;
ex:hasGeotime "P1-2" ;
ex:hasSerialNumber "373002" .
ex:Chijianling_Fm ex:hasCname "赤坚岭(岩)组" ;
ex:hasGeotime "Ar2-3" ;
ex:hasSerialNumber "140003" .
ex:Chishangou_Fm ex:hasCname "赤山沟组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210017" .
ex:Chongtou_Mem ex:hasCname "冲头段" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371014" .
ex:Chouniugou_Fm ex:hasCname "臭牛沟组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361013" .
ex:Chuanlinggou_Fm ex:hasCname "串岭沟组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221014" .
ex:Chuanshan_Fm ex:hasCname "船山组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362013" .
ex:Chujiashan_Fm ex:hasCname "储家山组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240006" .
ex:Cigou_Fm ex:hasCname "茨沟(岩)组",
"茨沟组" ;
ex:hasGeotime "Ar",
"Ar3" ;
ex:hasSerialNumber "100002",
"130003" .
ex:Ciyushan_Fm ex:hasCname "茨榆山组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210018" .
ex:Cizhuping_Fm ex:hasCname "茨竹坪组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220012" .
ex:Cuijiatun_Fm ex:hasCname "崔家屯组" ;
ex:hasGeotime "Z" ;
ex:hasSerialNumber "240007" .
ex:Cuipingshan_Fm ex:hasCname "翠屏山组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372006" .
ex:Cuizhuang_Fm ex:hasCname "崔庄组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230011" .
ex:Daao_Fm\(Tai_O_Fm\) ex:hasCname "大澳组" ;
ex:hasGeotime "C" ;
ex:hasSerialNumber "360002" .
ex:Daba_Fm ex:hasCname "大坝组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371015" .
ex:Dabaoshan_Gneiss ex:hasCname "大宝山片麻岩" ;
ex:hasGeotime "Pt" ;
ex:hasSerialNumber "200001" .
ex:Dabieshan_Gr ex:hasCname "大别山(岩)群" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210020" .
ex:Dacao_Fm ex:hasCname "大漕组" ;
ex:hasGeotime "Ar2-3" ;
ex:hasSerialNumber "140004" .
ex:Dacaotan_Fm ex:hasCname "大草滩组" ;
ex:hasGeotime "D3-C1" ;
ex:hasSerialNumber "357009" .
ex:Dachaigou_Fm ex:hasCname "打柴沟组" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365009" .
ex:Dadongcha_Fm ex:hasCname "大东岔(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210021" .
ex:Dadongchang_Fm ex:hasCname "大东厂组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371016" .
ex:Dagangou_Fm ex:hasCname "大干沟组" ;
ex:hasGeotime "C1-2" ;
ex:hasSerialNumber "364007" .
ex:Daganshan_Fm ex:hasCname "大绀山组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241006" .
ex:Daguanshan_Fm ex:hasCname "大关山组" ;
ex:hasGeotime "C2-P1" ;
ex:hasSerialNumber "365010" .
ex:Dagushi_Fm ex:hasCname "大古石组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210022" .
ex:Dahalajunshan_Fm ex:hasCname "大哈拉军山组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361015" .
ex:Dahe_Fm ex:hasCname "大河组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220013" .
ex:Dahebian_Fm ex:hasCname "大河边(岩)组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230012" .
ex:Daheshen_Fm ex:hasCname "大河深组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371017" .
ex:Daheyan_Fm ex:hasCname "大河沿组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372008" .
ex:Dahongkou_Fm ex:hasCname "大红口组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230013" .
ex:Dahongshan_Fm ex:hasCname "大红山组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371018" .
ex:Dahongshan_Gr ex:hasCname "大红山群" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210024" .
ex:Dahongyu_Fm ex:hasCname "大红峪组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221015" .
ex:Dahu_Fm ex:hasCname "大湖组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361016" .
ex:Dahuanggou_Fm ex:hasCname "大黄沟组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371019" .
ex:Dahuoluoshan_Fm ex:hasCname "大豁落山组" ;
ex:hasGeotime "Qn" ;
ex:hasSerialNumber "231013" .
ex:Daianhe_Fm ex:hasCname "代安河组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241009" .
ex:Dajiangbian_Fm ex:hasCname "大江边组" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230014" .
ex:Dajinshan_Fm ex:hasCname "大金山组" ;
ex:hasGeotime "AnZ" ;
ex:hasSerialNumber "239001" .
ex:Dakendaban_Gr ex:hasCname "达肯大坂(岩)群" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210019" .
ex:Dali_Gr ex:hasCname "大理(岩)群" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220014" .
ex:Daligou_Fm ex:hasCname "大梨沟组" ;
ex:hasGeotime "Ar3-Pt1" ;
ex:hasSerialNumber "150005" .
ex:Daliyueer_Fm ex:hasCname "达里约尔组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372007" .
ex:Dalizi_Fm ex:hasCname "大栗子(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210025" .
ex:Dalong_Fm ex:hasCname "大隆组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372009" .
ex:Dalongkou_Fm ex:hasCname "大龙口组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220015" .
ex:Damenglong_Gr ex:hasCname "大勐龙群" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220016" .
ex:Damingshan_Fm ex:hasCname "大名山组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371020" .
ex:Daminshan_Fm ex:hasCname "大民山组" ;
ex:hasGeotime "D2-3" ;
ex:hasSerialNumber "356005" .
ex:Dananao_Gr ex:hasCname "大南澳群" ;
ex:hasGeotime "AnR" ;
ex:hasSerialNumber "d103" .
ex:Dananping_Fm ex:hasCname "大南坪(岩)组" ;
ex:hasGeotime "Ar2" ;
ex:hasSerialNumber "120001" .
ex:Danfeng_Gr\(Gr\) ex:hasCname "丹凤群(岩)群" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230016" .
ex:Dangchong_Fm ex:hasCname "当冲组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371024" .
ex:Danghenanshan_Fm ex:hasCname "党河南山组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361020" .
ex:Danshanshi_Gr ex:hasCname "担山石群" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210031" .
ex:Danzhou_Gr ex:hasCname "丹洲群" ;
ex:hasGeotime "Pt3" ;
ex:hasSerialNumber "230017" .
ex:Daojiuwan_Fm ex:hasCname "捣臼湾组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220022" .
ex:Daorenchong_Fm ex:hasCname "道人冲组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362015" .
ex:Daoxiang_Fm ex:hasCname "稻香组" ;
ex:hasGeotime "Z2" ;
ex:hasSerialNumber "242006" .
ex:Daozhuanyao_Fm ex:hasCname "道砖窑组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210032" .
ex:Daposhan_Fm ex:hasCname "大迫山组" ;
ex:hasGeotime "Ch" ;
ex:hasSerialNumber "221016" .
ex:Dapu_Fm ex:hasCname "大埔组" ;
ex:hasGeotime "C2" ;
ex:hasSerialNumber "362014" .
ex:Dapuhai_Fm\(Tolo_Harbour_Fm\) ex:hasCname "大浦海组" ;
ex:hasGeotime "P" ;
ex:hasSerialNumber "370003" .
ex:Daqiao_Fm\(Tai_Kiu_Fm\) ex:hasCname "大桥组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361017" .
ex:Daquan_Fm ex:hasCname "大泉组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372010" .
ex:Darezha_Fm ex:hasCname "大热渣组" ;
ex:hasGeotime "Pt2" ;
ex:hasSerialNumber "220017" .
ex:Dasaiba_Fm ex:hasCname "大赛坝组" ;
ex:hasGeotime "C1" ;
ex:hasSerialNumber "361018" .
ex:Dashajiang_Fm ex:hasCname "大沙江组" ;
ex:hasGeotime "Z1" ;
ex:hasSerialNumber "241007" .
ex:Dashangou_Fm ex:hasCname "大山沟(岩)组" ;
ex:hasGeotime "Ar3" ;
ex:hasSerialNumber "130004" .
ex:Dashibao_Fm ex:hasCname "大石包组" ;
ex:hasGeotime "P2" ;
ex:hasSerialNumber "372011" .
ex:Dashiqiao_Fm ex:hasCname "大石桥组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210026" .
ex:Dashiqiao_Fm\(Fm\) ex:hasCname "大石桥组(岩)组" ;
ex:hasGeotime "Pt1" ;
ex:hasSerialNumber "210027" .
ex:Dashizhai_Fm ex:hasCname "大石寨组" ;
ex:hasGeotime "P1" ;
ex:hasSerialNumber "371021" .
ex:Dashuigou_Fm ex:hasCname "大水沟组" ;
ex:hasGeotime "P1-2" ;
ex:hasSerialNumber "373003" .