nmdc-runtime 1.3.1__py3-none-any.whl → 2.12.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. nmdc_runtime/Dockerfile +177 -0
  2. nmdc_runtime/api/analytics.py +90 -0
  3. nmdc_runtime/api/boot/capabilities.py +9 -0
  4. nmdc_runtime/api/boot/object_types.py +126 -0
  5. nmdc_runtime/api/boot/triggers.py +84 -0
  6. nmdc_runtime/api/boot/workflows.py +116 -0
  7. nmdc_runtime/api/core/auth.py +212 -0
  8. nmdc_runtime/api/core/idgen.py +200 -0
  9. nmdc_runtime/api/core/metadata.py +777 -0
  10. nmdc_runtime/api/core/util.py +114 -0
  11. nmdc_runtime/api/db/mongo.py +436 -0
  12. nmdc_runtime/api/db/s3.py +37 -0
  13. nmdc_runtime/api/endpoints/capabilities.py +25 -0
  14. nmdc_runtime/api/endpoints/find.py +634 -0
  15. nmdc_runtime/api/endpoints/jobs.py +206 -0
  16. nmdc_runtime/api/endpoints/lib/helpers.py +274 -0
  17. nmdc_runtime/api/endpoints/lib/linked_instances.py +193 -0
  18. nmdc_runtime/api/endpoints/lib/path_segments.py +165 -0
  19. nmdc_runtime/api/endpoints/metadata.py +260 -0
  20. nmdc_runtime/api/endpoints/nmdcschema.py +515 -0
  21. nmdc_runtime/api/endpoints/object_types.py +38 -0
  22. nmdc_runtime/api/endpoints/objects.py +277 -0
  23. nmdc_runtime/api/endpoints/operations.py +78 -0
  24. nmdc_runtime/api/endpoints/queries.py +701 -0
  25. nmdc_runtime/api/endpoints/runs.py +98 -0
  26. nmdc_runtime/api/endpoints/search.py +38 -0
  27. nmdc_runtime/api/endpoints/sites.py +205 -0
  28. nmdc_runtime/api/endpoints/triggers.py +25 -0
  29. nmdc_runtime/api/endpoints/users.py +214 -0
  30. nmdc_runtime/api/endpoints/util.py +817 -0
  31. nmdc_runtime/api/endpoints/wf_file_staging.py +307 -0
  32. nmdc_runtime/api/endpoints/workflows.py +353 -0
  33. nmdc_runtime/api/entrypoint.sh +7 -0
  34. nmdc_runtime/api/main.py +495 -0
  35. nmdc_runtime/api/middleware.py +43 -0
  36. nmdc_runtime/api/models/capability.py +14 -0
  37. nmdc_runtime/api/models/id.py +92 -0
  38. nmdc_runtime/api/models/job.py +57 -0
  39. nmdc_runtime/api/models/lib/helpers.py +78 -0
  40. nmdc_runtime/api/models/metadata.py +11 -0
  41. nmdc_runtime/api/models/nmdc_schema.py +146 -0
  42. nmdc_runtime/api/models/object.py +180 -0
  43. nmdc_runtime/api/models/object_type.py +20 -0
  44. nmdc_runtime/api/models/operation.py +66 -0
  45. nmdc_runtime/api/models/query.py +246 -0
  46. nmdc_runtime/api/models/query_continuation.py +111 -0
  47. nmdc_runtime/api/models/run.py +161 -0
  48. nmdc_runtime/api/models/site.py +87 -0
  49. nmdc_runtime/api/models/trigger.py +13 -0
  50. nmdc_runtime/api/models/user.py +207 -0
  51. nmdc_runtime/api/models/util.py +260 -0
  52. nmdc_runtime/api/models/wfe_file_stages.py +122 -0
  53. nmdc_runtime/api/models/workflow.py +15 -0
  54. nmdc_runtime/api/openapi.py +178 -0
  55. nmdc_runtime/api/swagger_ui/assets/EllipsesButton.js +146 -0
  56. nmdc_runtime/api/swagger_ui/assets/EndpointSearchWidget.js +369 -0
  57. nmdc_runtime/api/swagger_ui/assets/script.js +252 -0
  58. nmdc_runtime/api/swagger_ui/assets/style.css +155 -0
  59. nmdc_runtime/api/swagger_ui/swagger_ui.py +34 -0
  60. nmdc_runtime/config.py +56 -0
  61. nmdc_runtime/minter/adapters/repository.py +22 -2
  62. nmdc_runtime/minter/config.py +30 -4
  63. nmdc_runtime/minter/domain/model.py +55 -1
  64. nmdc_runtime/minter/entrypoints/fastapi_app.py +1 -1
  65. nmdc_runtime/mongo_util.py +89 -0
  66. nmdc_runtime/site/backup/nmdcdb_mongodump.py +1 -1
  67. nmdc_runtime/site/backup/nmdcdb_mongoexport.py +1 -3
  68. nmdc_runtime/site/changesheets/data/OmicsProcessing-to-catted-Biosamples.tsv +1561 -0
  69. nmdc_runtime/site/changesheets/scripts/missing_neon_soils_ecosystem_data.py +311 -0
  70. nmdc_runtime/site/changesheets/scripts/neon_soils_add_ncbi_ids.py +210 -0
  71. nmdc_runtime/site/dagster.yaml +53 -0
  72. nmdc_runtime/site/entrypoint-daemon.sh +29 -0
  73. nmdc_runtime/site/entrypoint-dagit-readonly.sh +26 -0
  74. nmdc_runtime/site/entrypoint-dagit.sh +29 -0
  75. nmdc_runtime/site/export/ncbi_xml.py +1331 -0
  76. nmdc_runtime/site/export/ncbi_xml_utils.py +405 -0
  77. nmdc_runtime/site/export/study_metadata.py +27 -4
  78. nmdc_runtime/site/graphs.py +294 -45
  79. nmdc_runtime/site/ops.py +1008 -230
  80. nmdc_runtime/site/repair/database_updater.py +451 -0
  81. nmdc_runtime/site/repository.py +368 -133
  82. nmdc_runtime/site/resources.py +154 -80
  83. nmdc_runtime/site/translation/gold_translator.py +235 -83
  84. nmdc_runtime/site/translation/neon_benthic_translator.py +212 -188
  85. nmdc_runtime/site/translation/neon_soil_translator.py +82 -58
  86. nmdc_runtime/site/translation/neon_surface_water_translator.py +698 -0
  87. nmdc_runtime/site/translation/neon_utils.py +24 -7
  88. nmdc_runtime/site/translation/submission_portal_translator.py +616 -162
  89. nmdc_runtime/site/translation/translator.py +73 -3
  90. nmdc_runtime/site/util.py +26 -7
  91. nmdc_runtime/site/validation/emsl.py +1 -0
  92. nmdc_runtime/site/validation/gold.py +1 -0
  93. nmdc_runtime/site/validation/util.py +16 -12
  94. nmdc_runtime/site/workspace.yaml +13 -0
  95. nmdc_runtime/static/NMDC_logo.svg +1073 -0
  96. nmdc_runtime/static/ORCID-iD_icon_vector.svg +4 -0
  97. nmdc_runtime/static/README.md +5 -0
  98. nmdc_runtime/static/favicon.ico +0 -0
  99. nmdc_runtime/util.py +236 -192
  100. nmdc_runtime-2.12.0.dist-info/METADATA +45 -0
  101. nmdc_runtime-2.12.0.dist-info/RECORD +131 -0
  102. {nmdc_runtime-1.3.1.dist-info → nmdc_runtime-2.12.0.dist-info}/WHEEL +1 -2
  103. {nmdc_runtime-1.3.1.dist-info → nmdc_runtime-2.12.0.dist-info}/entry_points.txt +0 -1
  104. nmdc_runtime/containers.py +0 -14
  105. nmdc_runtime/core/db/Database.py +0 -15
  106. nmdc_runtime/core/exceptions/__init__.py +0 -23
  107. nmdc_runtime/core/exceptions/base.py +0 -47
  108. nmdc_runtime/core/exceptions/token.py +0 -13
  109. nmdc_runtime/domain/users/queriesInterface.py +0 -18
  110. nmdc_runtime/domain/users/userSchema.py +0 -37
  111. nmdc_runtime/domain/users/userService.py +0 -14
  112. nmdc_runtime/infrastructure/database/db.py +0 -3
  113. nmdc_runtime/infrastructure/database/models/user.py +0 -10
  114. nmdc_runtime/lib/__init__.py +0 -1
  115. nmdc_runtime/lib/extract_nmdc_data.py +0 -41
  116. nmdc_runtime/lib/load_nmdc_data.py +0 -121
  117. nmdc_runtime/lib/nmdc_dataframes.py +0 -829
  118. nmdc_runtime/lib/nmdc_etl_class.py +0 -402
  119. nmdc_runtime/lib/transform_nmdc_data.py +0 -1117
  120. nmdc_runtime/site/drsobjects/ingest.py +0 -93
  121. nmdc_runtime/site/drsobjects/registration.py +0 -131
  122. nmdc_runtime/site/terminusdb/generate.py +0 -198
  123. nmdc_runtime/site/terminusdb/ingest.py +0 -44
  124. nmdc_runtime/site/terminusdb/schema.py +0 -1671
  125. nmdc_runtime/site/translation/emsl.py +0 -42
  126. nmdc_runtime/site/translation/gold.py +0 -53
  127. nmdc_runtime/site/translation/jgi.py +0 -31
  128. nmdc_runtime/site/translation/util.py +0 -132
  129. nmdc_runtime/site/validation/jgi.py +0 -42
  130. nmdc_runtime-1.3.1.dist-info/METADATA +0 -181
  131. nmdc_runtime-1.3.1.dist-info/RECORD +0 -81
  132. nmdc_runtime-1.3.1.dist-info/top_level.txt +0 -1
  133. /nmdc_runtime/{client → api}/__init__.py +0 -0
  134. /nmdc_runtime/{core → api/boot}/__init__.py +0 -0
  135. /nmdc_runtime/{core/db → api/core}/__init__.py +0 -0
  136. /nmdc_runtime/{domain → api/db}/__init__.py +0 -0
  137. /nmdc_runtime/{domain/users → api/endpoints}/__init__.py +0 -0
  138. /nmdc_runtime/{infrastructure → api/endpoints/lib}/__init__.py +0 -0
  139. /nmdc_runtime/{infrastructure/database → api/models}/__init__.py +0 -0
  140. /nmdc_runtime/{infrastructure/database/models → api/models/lib}/__init__.py +0 -0
  141. /nmdc_runtime/{site/drsobjects/__init__.py → api/models/minter.py} +0 -0
  142. /nmdc_runtime/site/{terminusdb → repair}/__init__.py +0 -0
  143. {nmdc_runtime-1.3.1.dist-info → nmdc_runtime-2.12.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,1073 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 213.45572 213.45572"
4
+ version="1.1"
5
+ id="svg143"
6
+ sodipodi:docname="NMDC_logo.svg"
7
+ inkscape:version="1.4 (e7c3feb1, 2024-10-09)"
8
+ width="213.45572"
9
+ height="213.45572"
10
+ inkscape:export-filename="../Work/nmdc-field-notes/assets/logo-dark.png"
11
+ inkscape:export-xdpi="460.5358"
12
+ inkscape:export-ydpi="460.5358"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg">
17
+ <sodipodi:namedview
18
+ id="namedview143"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="2"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="true"
25
+ inkscape:deskcolor="#d1d1d1"
26
+ inkscape:zoom="3.0461581"
27
+ inkscape:cx="100.94683"
28
+ inkscape:cy="131.14881"
29
+ inkscape:window-width="1456"
30
+ inkscape:window-height="1176"
31
+ inkscape:window-x="2239"
32
+ inkscape:window-y="25"
33
+ inkscape:window-maximized="0"
34
+ inkscape:current-layer="svg143" />
35
+ <defs
36
+ id="defs4">
37
+ <style
38
+ id="style1">
39
+ .cls-1, .cls-2, .cls-3, .cls-4, .cls-5 {
40
+ fill: none;
41
+ }
42
+
43
+ .cls-6 {
44
+ fill: #ed5338;
45
+ }
46
+
47
+ .cls-6, .cls-7, .cls-8, .cls-9 {
48
+ mix-blend-mode: multiply;
49
+ }
50
+
51
+ .cls-10 {
52
+ fill: #e88320;
53
+ }
54
+
55
+ .cls-2, .cls-3, .cls-4, .cls-5 {
56
+ stroke-miterlimit: 10;
57
+ }
58
+
59
+ .cls-2, .cls-5 {
60
+ stroke: #48206e;
61
+ }
62
+
63
+ .cls-11, .cls-12 {
64
+ fill: #48206e;
65
+ }
66
+
67
+ .cls-11, .cls-12, .cls-13, .cls-14 {
68
+ font-family: UniversLTStd-Light, 'UniversLTStd Light';
69
+ font-weight: 300;
70
+ }
71
+
72
+ .cls-11, .cls-14 {
73
+ font-size: 14.44px;
74
+ }
75
+
76
+ .cls-12, .cls-13 {
77
+ font-size: 14.07px;
78
+ }
79
+
80
+ .cls-3, .cls-4 {
81
+ stroke: #000;
82
+ }
83
+
84
+ .cls-3, .cls-5 {
85
+ stroke-width: 1.03px;
86
+ }
87
+
88
+ .cls-15 {
89
+ isolation: isolate;
90
+ }
91
+
92
+ .cls-16 {
93
+ clip-path: url(#clippath-1);
94
+ }
95
+
96
+ .cls-17 {
97
+ clip-path: url(#clippath-3);
98
+ }
99
+
100
+ .cls-18 {
101
+ clip-path: url(#clippath-2);
102
+ }
103
+
104
+ .cls-7 {
105
+ fill: #494949;
106
+ }
107
+
108
+ .cls-19 {
109
+ fill: #80d4f3;
110
+ }
111
+
112
+ .cls-20 {
113
+ fill: #b3b3b3;
114
+ }
115
+
116
+ .cls-21 {
117
+ fill: #969696;
118
+ }
119
+
120
+ .cls-22, .cls-9 {
121
+ fill: #7e7e7e;
122
+ }
123
+
124
+ .cls-23 {
125
+ fill: #00aae7;
126
+ }
127
+
128
+ .cls-24, .cls-8 {
129
+ fill: #4f3b80;
130
+ }
131
+
132
+ .cls-25 {
133
+ fill: #fff;
134
+ font-family: UniversLTStd-Cn, 'UniversLTStd Cn';
135
+ font-size: 12px;
136
+ }
137
+
138
+ .cls-26 {
139
+ letter-spacing: .02em;
140
+ }
141
+
142
+ .cls-27 {
143
+ letter-spacing: .02em;
144
+ }
145
+
146
+ .cls-28 {
147
+ letter-spacing: .03em;
148
+ }
149
+
150
+ .cls-29 {
151
+ letter-spacing: .03em;
152
+ }
153
+
154
+ .cls-30 {
155
+ letter-spacing: .02em;
156
+ }
157
+
158
+ .cls-31 {
159
+ letter-spacing: .02em;
160
+ }
161
+
162
+ .cls-32 {
163
+ letter-spacing: .02em;
164
+ }
165
+
166
+ .cls-33 {
167
+ letter-spacing: .02em;
168
+ }
169
+
170
+ .cls-34 {
171
+ letter-spacing: .01em;
172
+ }
173
+
174
+ .cls-35 {
175
+ clip-path: url(#clippath);
176
+ }
177
+
178
+ .cls-36 {
179
+ letter-spacing: .01em;
180
+ }
181
+
182
+ .cls-37 {
183
+ letter-spacing: .01em;
184
+ }
185
+
186
+ .cls-38 {
187
+ letter-spacing: .01em;
188
+ }
189
+
190
+ .cls-39 {
191
+ letter-spacing: .04em;
192
+ }
193
+
194
+ .cls-40 {
195
+ letter-spacing: .04em;
196
+ }
197
+ </style>
198
+ <clipPath
199
+ id="clippath">
200
+ <path
201
+ class="cls-1"
202
+ d="m 117.17,339.44 c -0.16,3.09 0.87,5.98 2.92,8.13 2.03,2.14 4.85,3.32 7.94,3.32 3.09,0 5.91,-1.18 7.94,-3.32 2.04,-2.15 3.08,-5.04 2.92,-8.13 -0.77,-18.12 -0.77,-36.47 0,-54.57 0.16,-3.11 -0.87,-6 -2.91,-8.15 -2.03,-2.14 -4.85,-3.32 -7.94,-3.32 v 0 c -3.09,0 -5.91,1.18 -7.94,3.32 -2.04,2.15 -3.08,5.04 -2.92,8.13 0.77,18.12 0.77,36.47 0,54.57 v 0.02 z"
203
+ id="path1" />
204
+ </clipPath>
205
+ <clipPath
206
+ id="clippath-1">
207
+ <path
208
+ class="cls-1"
209
+ d="m 117.17,506.65 c -0.16,3.09 0.87,5.98 2.92,8.13 2.03,2.14 4.85,3.32 7.94,3.32 3.09,0 5.91,-1.18 7.94,-3.32 2.04,-2.15 3.08,-5.04 2.92,-8.13 -0.77,-18.12 -0.77,-36.47 0,-54.57 0.16,-3.11 -0.87,-6 -2.91,-8.15 -2.03,-2.14 -4.85,-3.32 -7.94,-3.32 v 0 c -3.09,0 -5.91,1.18 -7.94,3.32 -2.04,2.15 -3.08,5.04 -2.92,8.13 0.77,18.12 0.77,36.47 0,54.57 v 0.02 z"
210
+ id="path2" />
211
+ </clipPath>
212
+ <clipPath
213
+ id="clippath-2">
214
+ <path
215
+ class="cls-1"
216
+ d="m 52.7,90.5 c -0.22,4.16 1.17,8.04 3.92,10.94 2.73,2.88 6.53,4.47 10.68,4.47 4.15,0 7.94,-1.59 10.68,-4.47 C 80.73,98.55 82.12,94.66 81.9,90.5 80.87,66.13 80.87,41.45 81.9,17.11 82.12,12.93 80.73,9.05 77.98,6.15 75.25,3.27 71.45,1.68 67.3,1.68 v 0 c -4.15,0 -7.94,1.59 -10.68,4.47 -2.75,2.89 -4.14,6.78 -3.92,10.94 1.03,24.37 1.03,49.05 0,73.39 z"
217
+ id="path3" />
218
+ </clipPath>
219
+ <clipPath
220
+ id="clippath-3">
221
+ <path
222
+ class="cls-1"
223
+ d="m 302.52,90.74 c -0.22,4.17 1.18,8.07 3.94,10.98 2.74,2.89 6.55,4.48 10.72,4.48 4.17,0 7.97,-1.59 10.72,-4.48 2.76,-2.91 4.15,-6.8 3.94,-10.98 -1.04,-24.46 -1.04,-49.24 0,-73.67 0.22,-4.2 -1.18,-8.09 -3.93,-11 -2.74,-2.89 -6.55,-4.48 -10.72,-4.48 v 0 c -4.17,0 -7.97,1.59 -10.72,4.48 -2.76,2.91 -4.16,6.8 -3.94,10.98 1.04,24.46 1.04,49.24 0,73.67 v 0.02 z"
224
+ id="path4" />
225
+ </clipPath>
226
+ <clipPath
227
+ clipPathUnits="userSpaceOnUse"
228
+ id="clipPath49">
229
+ <path
230
+ d="M 0,807 H 712 V 0 H 0 Z"
231
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
232
+ id="path49" />
233
+ </clipPath>
234
+ <mask
235
+ maskUnits="userSpaceOnUse"
236
+ x="0"
237
+ y="0"
238
+ width="1"
239
+ height="1"
240
+ id="mask3">
241
+ <path
242
+ id="path4-3"
243
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
244
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
245
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
246
+ clip-path="url(#clipPath5)" />
247
+ <g
248
+ id="g7"
249
+ clip-path="url(#clipPath8)">
250
+ <path
251
+ d="M 99.917,612.083 H 612.586 V 99.414 H 99.917 Z"
252
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
253
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
254
+ clip-path="url(#clipPath6)"
255
+ id="path7" />
256
+ </g>
257
+ </mask>
258
+ <clipPath
259
+ clipPathUnits="userSpaceOnUse"
260
+ id="clipPath5">
261
+ <path
262
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
263
+ id="path5" />
264
+ </clipPath>
265
+ <clipPath
266
+ clipPathUnits="userSpaceOnUse"
267
+ id="clipPath8">
268
+ <path
269
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
270
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
271
+ id="path8" />
272
+ </clipPath>
273
+ <clipPath
274
+ clipPathUnits="userSpaceOnUse"
275
+ id="clipPath6">
276
+ <path
277
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
278
+ id="path6" />
279
+ </clipPath>
280
+ <clipPath
281
+ clipPathUnits="userSpaceOnUse"
282
+ id="clipPath10">
283
+ <path
284
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
285
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
286
+ id="path10" />
287
+ </clipPath>
288
+ <clipPath
289
+ clipPathUnits="userSpaceOnUse"
290
+ id="clipPath9">
291
+ <path
292
+ d="M 164,548 H 548 V 164 H 164 Z"
293
+ id="path9" />
294
+ </clipPath>
295
+ <clipPath
296
+ clipPathUnits="userSpaceOnUse"
297
+ id="clipPath11">
298
+ <path
299
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
300
+ id="path11" />
301
+ </clipPath>
302
+ <clipPath
303
+ clipPathUnits="userSpaceOnUse"
304
+ id="clipPath12">
305
+ <path
306
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
307
+ transform="translate(-183.0039,-484.00001)"
308
+ id="path12" />
309
+ </clipPath>
310
+ <clipPath
311
+ clipPathUnits="userSpaceOnUse"
312
+ id="clipPath13">
313
+ <path
314
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
315
+ transform="translate(-231.00391,-532.00001)"
316
+ id="path13" />
317
+ </clipPath>
318
+ <clipPath
319
+ clipPathUnits="userSpaceOnUse"
320
+ id="clipPath14">
321
+ <path
322
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
323
+ transform="translate(-207.00391,-508.00001)"
324
+ id="path14" />
325
+ </clipPath>
326
+ <clipPath
327
+ clipPathUnits="userSpaceOnUse"
328
+ id="clipPath15">
329
+ <path
330
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
331
+ transform="translate(-356.00001,-532.00001)"
332
+ id="path15" />
333
+ </clipPath>
334
+ <clipPath
335
+ clipPathUnits="userSpaceOnUse"
336
+ id="clipPath16">
337
+ <path
338
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
339
+ transform="translate(-356.00001,-436.00001)"
340
+ id="path16" />
341
+ </clipPath>
342
+ <clipPath
343
+ clipPathUnits="userSpaceOnUse"
344
+ id="clipPath18">
345
+ <path
346
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
347
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
348
+ id="path18" />
349
+ </clipPath>
350
+ <clipPath
351
+ clipPathUnits="userSpaceOnUse"
352
+ id="clipPath17">
353
+ <path
354
+ d="M 164.066,547.968 H 547.999 V 163.956 H 164.066 Z"
355
+ transform="translate(-164.41941,-164.30961)"
356
+ id="path17" />
357
+ </clipPath>
358
+ <clipPath
359
+ clipPathUnits="userSpaceOnUse"
360
+ id="clipPath20">
361
+ <path
362
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
363
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
364
+ id="path20" />
365
+ </clipPath>
366
+ <clipPath
367
+ clipPathUnits="userSpaceOnUse"
368
+ id="clipPath19">
369
+ <path
370
+ d="M 164.02,547.93 H 547.835 V 164.176 H 164.02 Z"
371
+ transform="translate(-547.48141,-164.5293)"
372
+ id="path19" />
373
+ </clipPath>
374
+ <clipPath
375
+ clipPathUnits="userSpaceOnUse"
376
+ id="clipPath22">
377
+ <path
378
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
379
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
380
+ id="path22" />
381
+ </clipPath>
382
+ <clipPath
383
+ clipPathUnits="userSpaceOnUse"
384
+ id="clipPath21">
385
+ <path
386
+ d="m 299.75,548.25 h 0.5 v -384.5 h -0.5 z"
387
+ transform="translate(-300.00001,-548.00002)"
388
+ id="path21" />
389
+ </clipPath>
390
+ <clipPath
391
+ clipPathUnits="userSpaceOnUse"
392
+ id="clipPath24">
393
+ <path
394
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
395
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
396
+ id="path24" />
397
+ </clipPath>
398
+ <clipPath
399
+ clipPathUnits="userSpaceOnUse"
400
+ id="clipPath23">
401
+ <path
402
+ d="m 355.75,548.25 h 0.5 v -384.5 h -0.5 z"
403
+ transform="translate(-356.00001,-548.00002)"
404
+ id="path23" />
405
+ </clipPath>
406
+ <clipPath
407
+ clipPathUnits="userSpaceOnUse"
408
+ id="clipPath26">
409
+ <path
410
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
411
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
412
+ id="path26" />
413
+ </clipPath>
414
+ <clipPath
415
+ clipPathUnits="userSpaceOnUse"
416
+ id="clipPath25">
417
+ <path
418
+ d="m 411.83,548.25 h 0.5 v -384.5 h -0.5 z"
419
+ transform="translate(-412.08011,-548.00002)"
420
+ id="path25" />
421
+ </clipPath>
422
+ <clipPath
423
+ clipPathUnits="userSpaceOnUse"
424
+ id="clipPath28">
425
+ <path
426
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
427
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
428
+ id="path28" />
429
+ </clipPath>
430
+ <clipPath
431
+ clipPathUnits="userSpaceOnUse"
432
+ id="clipPath27">
433
+ <path
434
+ d="m 163.9,412.1 h 383.933 v -0.2 H 163.9 Z"
435
+ transform="translate(-547.73341,-412.00001)"
436
+ id="path27" />
437
+ </clipPath>
438
+ <clipPath
439
+ clipPathUnits="userSpaceOnUse"
440
+ id="clipPath30">
441
+ <path
442
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
443
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
444
+ id="path30" />
445
+ </clipPath>
446
+ <clipPath
447
+ clipPathUnits="userSpaceOnUse"
448
+ id="clipPath29">
449
+ <path
450
+ d="m 163.9,356.1 h 383.933 v -0.2 H 163.9 Z"
451
+ transform="translate(-547.73341,-356.00001)"
452
+ id="path29" />
453
+ </clipPath>
454
+ <clipPath
455
+ clipPathUnits="userSpaceOnUse"
456
+ id="clipPath32">
457
+ <path
458
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
459
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
460
+ id="path32" />
461
+ </clipPath>
462
+ <clipPath
463
+ clipPathUnits="userSpaceOnUse"
464
+ id="clipPath31">
465
+ <path
466
+ d="m 163.75,300.25 h 384.233 v -0.5 H 163.75 Z"
467
+ transform="translate(-547.73341,-300.00001)"
468
+ id="path31" />
469
+ </clipPath>
470
+ <clipPath
471
+ clipPathUnits="userSpaceOnUse"
472
+ id="clipPath49-0">
473
+ <path
474
+ d="M 0,807 H 712 V 0 H 0 Z"
475
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
476
+ id="path49-5" />
477
+ </clipPath>
478
+ <mask
479
+ maskUnits="userSpaceOnUse"
480
+ x="0"
481
+ y="0"
482
+ width="1"
483
+ height="1"
484
+ id="mask3-6">
485
+ <path
486
+ id="path4-8"
487
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
488
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
489
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
490
+ clip-path="url(#clipPath5-7)" />
491
+ <g
492
+ id="g7-5"
493
+ clip-path="url(#clipPath8-8)">
494
+ <path
495
+ d="M 99.917,612.083 H 612.586 V 99.414 H 99.917 Z"
496
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
497
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
498
+ clip-path="url(#clipPath6-7)"
499
+ id="path7-3" />
500
+ </g>
501
+ </mask>
502
+ <clipPath
503
+ clipPathUnits="userSpaceOnUse"
504
+ id="clipPath5-7">
505
+ <path
506
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
507
+ id="path5-6" />
508
+ </clipPath>
509
+ <clipPath
510
+ clipPathUnits="userSpaceOnUse"
511
+ id="clipPath8-8">
512
+ <path
513
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
514
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
515
+ id="path8-6" />
516
+ </clipPath>
517
+ <clipPath
518
+ clipPathUnits="userSpaceOnUse"
519
+ id="clipPath6-7">
520
+ <path
521
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
522
+ id="path6-1" />
523
+ </clipPath>
524
+ <clipPath
525
+ clipPathUnits="userSpaceOnUse"
526
+ id="clipPath10-8">
527
+ <path
528
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
529
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
530
+ id="path10-4" />
531
+ </clipPath>
532
+ <clipPath
533
+ clipPathUnits="userSpaceOnUse"
534
+ id="clipPath9-9">
535
+ <path
536
+ d="M 164,548 H 548 V 164 H 164 Z"
537
+ id="path9-7" />
538
+ </clipPath>
539
+ <clipPath
540
+ clipPathUnits="userSpaceOnUse"
541
+ id="clipPath11-3">
542
+ <path
543
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
544
+ id="path11-1" />
545
+ </clipPath>
546
+ <clipPath
547
+ clipPathUnits="userSpaceOnUse"
548
+ id="clipPath12-0">
549
+ <path
550
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
551
+ transform="translate(-183.0039,-484.00001)"
552
+ id="path12-2" />
553
+ </clipPath>
554
+ <clipPath
555
+ clipPathUnits="userSpaceOnUse"
556
+ id="clipPath13-3">
557
+ <path
558
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
559
+ transform="translate(-231.00391,-532.00001)"
560
+ id="path13-7" />
561
+ </clipPath>
562
+ <clipPath
563
+ clipPathUnits="userSpaceOnUse"
564
+ id="clipPath14-1">
565
+ <path
566
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
567
+ transform="translate(-207.00391,-508.00001)"
568
+ id="path14-8" />
569
+ </clipPath>
570
+ <clipPath
571
+ clipPathUnits="userSpaceOnUse"
572
+ id="clipPath15-9">
573
+ <path
574
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
575
+ transform="translate(-356.00001,-532.00001)"
576
+ id="path15-3" />
577
+ </clipPath>
578
+ <clipPath
579
+ clipPathUnits="userSpaceOnUse"
580
+ id="clipPath16-7">
581
+ <path
582
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
583
+ transform="translate(-356.00001,-436.00001)"
584
+ id="path16-4" />
585
+ </clipPath>
586
+ <clipPath
587
+ clipPathUnits="userSpaceOnUse"
588
+ id="clipPath18-8">
589
+ <path
590
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
591
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
592
+ id="path18-0" />
593
+ </clipPath>
594
+ <clipPath
595
+ clipPathUnits="userSpaceOnUse"
596
+ id="clipPath17-4">
597
+ <path
598
+ d="M 164.066,547.968 H 547.999 V 163.956 H 164.066 Z"
599
+ transform="translate(-164.41941,-164.30961)"
600
+ id="path17-0" />
601
+ </clipPath>
602
+ <clipPath
603
+ clipPathUnits="userSpaceOnUse"
604
+ id="clipPath20-5">
605
+ <path
606
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
607
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
608
+ id="path20-7" />
609
+ </clipPath>
610
+ <clipPath
611
+ clipPathUnits="userSpaceOnUse"
612
+ id="clipPath19-0">
613
+ <path
614
+ d="M 164.02,547.93 H 547.835 V 164.176 H 164.02 Z"
615
+ transform="translate(-547.48141,-164.5293)"
616
+ id="path19-0" />
617
+ </clipPath>
618
+ <clipPath
619
+ clipPathUnits="userSpaceOnUse"
620
+ id="clipPath22-5">
621
+ <path
622
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
623
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
624
+ id="path22-6" />
625
+ </clipPath>
626
+ <clipPath
627
+ clipPathUnits="userSpaceOnUse"
628
+ id="clipPath21-7">
629
+ <path
630
+ d="m 299.75,548.25 h 0.5 v -384.5 h -0.5 z"
631
+ transform="translate(-300.00001,-548.00002)"
632
+ id="path21-8" />
633
+ </clipPath>
634
+ <clipPath
635
+ clipPathUnits="userSpaceOnUse"
636
+ id="clipPath24-0">
637
+ <path
638
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
639
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
640
+ id="path24-6" />
641
+ </clipPath>
642
+ <clipPath
643
+ clipPathUnits="userSpaceOnUse"
644
+ id="clipPath23-5">
645
+ <path
646
+ d="m 355.75,548.25 h 0.5 v -384.5 h -0.5 z"
647
+ transform="translate(-356.00001,-548.00002)"
648
+ id="path23-7" />
649
+ </clipPath>
650
+ <clipPath
651
+ clipPathUnits="userSpaceOnUse"
652
+ id="clipPath26-3">
653
+ <path
654
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
655
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
656
+ id="path26-4" />
657
+ </clipPath>
658
+ <clipPath
659
+ clipPathUnits="userSpaceOnUse"
660
+ id="clipPath25-3">
661
+ <path
662
+ d="m 411.83,548.25 h 0.5 v -384.5 h -0.5 z"
663
+ transform="translate(-412.08011,-548.00002)"
664
+ id="path25-0" />
665
+ </clipPath>
666
+ <clipPath
667
+ clipPathUnits="userSpaceOnUse"
668
+ id="clipPath28-4">
669
+ <path
670
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
671
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
672
+ id="path28-8" />
673
+ </clipPath>
674
+ <clipPath
675
+ clipPathUnits="userSpaceOnUse"
676
+ id="clipPath27-7">
677
+ <path
678
+ d="m 163.9,412.1 h 383.933 v -0.2 H 163.9 Z"
679
+ transform="translate(-547.73341,-412.00001)"
680
+ id="path27-5" />
681
+ </clipPath>
682
+ <clipPath
683
+ clipPathUnits="userSpaceOnUse"
684
+ id="clipPath30-9">
685
+ <path
686
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
687
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
688
+ id="path30-5" />
689
+ </clipPath>
690
+ <clipPath
691
+ clipPathUnits="userSpaceOnUse"
692
+ id="clipPath29-3">
693
+ <path
694
+ d="m 163.9,356.1 h 383.933 v -0.2 H 163.9 Z"
695
+ transform="translate(-547.73341,-356.00001)"
696
+ id="path29-2" />
697
+ </clipPath>
698
+ <clipPath
699
+ clipPathUnits="userSpaceOnUse"
700
+ id="clipPath32-7">
701
+ <path
702
+ d="m 163.75,548.25 h 384.5 v -384.5 h -384.5 z"
703
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
704
+ id="path32-3" />
705
+ </clipPath>
706
+ <clipPath
707
+ clipPathUnits="userSpaceOnUse"
708
+ id="clipPath31-9">
709
+ <path
710
+ d="m 163.75,300.25 h 384.233 v -0.5 H 163.75 Z"
711
+ transform="translate(-547.73341,-300.00001)"
712
+ id="path31-7" />
713
+ </clipPath>
714
+ </defs>
715
+ <g
716
+ id="g42"
717
+ transform="matrix(1.1001581,0,0,1.1001581,-6.474468,-0.36889439)"
718
+ inkscape:label="dark"
719
+ style="display:inline">
720
+ <rect
721
+ style="display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-opacity:1"
722
+ id="rect145"
723
+ width="213.45572"
724
+ height="213.45572"
725
+ x="0"
726
+ y="0"
727
+ transform="matrix(0.90896027,0,0,0.90896027,5.8850342,0.33531034)" />
728
+ <g
729
+ id="NMDC_Lockup_2_Stacked_BW">
730
+ <g
731
+ id="g39">
732
+ <path
733
+ class="cls-1"
734
+ d="m 61.12,146.1 c -2.81,0 -5.31,1.28 -7.05,3.61 l -0.07,0.1 h -0.44 v -0.25 c 0,-0.93 -0.06,-1.89 -0.12,-2.81 h -5.83 c 0.09,1.2 0.11,2.42 0.11,3.26 v 13.33 h 6.03 v -7.27 c 0,-4.19 2.72,-6.1 5.25,-6.1 2.84,0 4.4,1.73 4.4,4.88 v 8.5 h 6.04 v -9.48 c 0,-5 -2.96,-7.75 -8.33,-7.75 z"
735
+ id="path36"
736
+ style="fill:#ffffff" />
737
+ <path
738
+ class="cls-1"
739
+ d="m 99.85,146.1 c -3.05,0 -5.47,1.29 -7,3.73 l -0.25,0.4 -0.19,-0.44 c -1.01,-2.35 -3.16,-3.69 -5.9,-3.69 -3,0 -5.18,1.14 -6.84,3.6 l -0.07,0.11 h -0.45 v -0.25 c 0,-0.93 -0.06,-1.89 -0.12,-2.81 H 73.2 c 0.09,1.2 0.11,2.42 0.11,3.26 v 13.33 h 6.04 v -7.92 c 0,-3.16 1.82,-5.46 4.33,-5.46 3.36,0 3.79,2.61 3.79,4.88 v 8.5 h 6.03 v -8.84 c 0,-2.59 1.82,-4.54 4.23,-4.54 2.55,0 3.89,1.62 3.89,4.67 v 8.7 h 6.03 v -9.45 c 0,-5.16 -2.63,-7.78 -7.82,-7.78 z"
740
+ id="path37"
741
+ style="fill:#ffffff" />
742
+ <path
743
+ class="cls-1"
744
+ d="m 133.26,139.26 h -6.04 v 10.1 l -0.43,-0.44 c -1.85,-1.9 -4.17,-2.82 -7.1,-2.82 -5.72,0 -9.42,3.47 -9.42,8.84 0,5.37 3.72,9.04 9.25,9.04 4.25,0 6.08,-1.75 7.47,-3.38 l 0.44,-0.52 v 0.68 c 0,0.96 0.04,1.78 0.11,2.57 h 5.83 c -0.08,-0.78 -0.11,-1.57 -0.11,-2.57 z m -11.54,21.27 c -3.58,0 -5.19,-2.81 -5.19,-5.59 0,-3.12 2.18,-5.39 5.19,-5.39 3.18,0 5.32,2.26 5.32,5.63 0,3.15 -2.19,5.36 -5.32,5.36 z"
745
+ id="path38"
746
+ style="fill:#ffffff" />
747
+ <path
748
+ class="cls-1"
749
+ d="m 147.8,160.73 c -3.01,0 -4.81,-2.14 -4.81,-5.73 0,-3.59 1.89,-5.66 4.81,-5.66 2.25,0 3.56,0.97 3.98,2.96 h 6.25 c -0.82,-5.39 -6.74,-6.21 -10.23,-6.21 -3.49,0 -11.25,0.88 -11.25,9.01 0,6.55 5.82,8.87 10.81,8.87 3.74,0 10.06,-0.86 10.88,-6.55 h -6.42 c -0.17,2.07 -1.65,3.3 -4.01,3.3 z"
750
+ id="path39"
751
+ style="fill:#ffffff" />
752
+ </g>
753
+ </g>
754
+ <path
755
+ class="cls-1"
756
+ d="m 52.99,118.38 c 0.83,-0.18 1.5,-0.68 1.92,-1.34 -0.6,-0.29 -1.29,-0.41 -1.99,-0.26 -0.83,0.18 -1.5,0.68 -1.92,1.34 0.6,0.29 1.29,0.41 1.99,0.26 z"
757
+ id="path40"
758
+ style="fill:#ffffff" />
759
+ <path
760
+ class="cls-1"
761
+ d="M 74.65,101.26 C 71.14,99 70.14,94.32 72.4,90.82 c 0.8,-1.24 1.91,-2.16 3.16,-2.74 V 79.84 C 74.78,79.69 74.03,79.2 73.54,78.39 71.33,74.83 68.98,71.35 66.5,67.96 65.49,66.61 65.67,64.85 66.92,64 c 1.25,-0.85 2.96,-0.35 3.83,1.09 1.53,2.46 3.15,4.87 4.81,7.25 V 59.3 c -0.57,0.51 -1.26,0.89 -2.06,1.06 -2.49,0.54 -4.94,-1.04 -5.47,-3.53 -0.54,-2.49 1.04,-4.94 3.53,-5.47 1.48,-0.32 2.95,0.13 4,1.06 v -7.44 c 0,-5.99 -3.71,-11.1 -8.95,-13.19 1.98,2.33 2.33,5.75 0.59,8.45 -2.13,3.3 -6.54,4.25 -9.84,2.12 -3.3,-2.13 -4.25,-6.54 -2.12,-9.84 0.14,-0.21 0.31,-0.38 0.46,-0.57 -5.03,2.19 -8.55,7.2 -8.55,13.03 v 17.97 c 2.83,-4.06 5.52,-8.22 8.02,-12.49 1.07,-1.86 3.37,-2.45 5.2,-1.27 v 0 c 1.83,1.18 2.25,3.52 0.99,5.26 -3.09,4.37 -5.99,8.87 -8.69,13.48 -1.07,1.86 -3.37,2.45 -5.2,1.27 -0.12,-0.08 -0.21,-0.17 -0.32,-0.25 v 16.14 c 2.42,-0.42 4.76,1.13 5.28,3.55 0.54,2.49 -1.04,4.94 -3.53,5.47 -0.59,0.13 -1.18,0.13 -1.75,0.03 v 22.06 c 0,7.85 6.36,14.21 14.21,14.21 0.26,0 0.51,-0.03 0.77,-0.04 -2.77,-2.43 -3.43,-6.58 -1.37,-9.77 2.26,-3.51 6.94,-4.51 10.44,-2.25 1.47,0.95 2.49,2.32 3.03,3.85 0.85,-1.82 1.34,-3.85 1.34,-6 v -14.46 c -0.31,-0.14 -0.61,-0.3 -0.9,-0.49 z m -20,-26.57 c 1.74,-2.7 5.34,-3.47 8.04,-1.73 2.7,1.74 3.47,5.34 1.73,8.04 -1.74,2.7 -5.34,3.47 -8.04,1.73 -2.7,-1.74 -3.47,-5.34 -1.73,-8.04 z m -7.02,28.42 c -0.35,-1.65 0.69,-3.27 2.34,-3.62 1.65,-0.35 3.27,0.69 3.62,2.34 0.35,1.65 -0.69,3.27 -2.34,3.62 -1.65,0.35 -3.27,-0.69 -3.62,-2.34 z m 6.59,19.63 c -1.65,0.35 -3.27,-0.69 -3.62,-2.34 -0.18,-0.82 0,-1.63 0.41,-2.29 -0.8,-0.4 -1.43,-1.13 -1.64,-2.08 -0.35,-1.65 0.69,-3.27 2.34,-3.62 1.65,-0.35 3.27,0.69 3.62,2.34 0.18,0.82 0,1.63 -0.41,2.29 0.8,0.4 1.43,1.13 1.64,2.08 0.36,1.65 -0.69,3.27 -2.34,3.62 z m 2.98,-13.5 c -2.05,-0.87 -2.89,-3.16 -1.92,-5.14 2.35,-4.95 4.49,-10 6.41,-15.14 0.75,-2.07 2.98,-3.06 5.03,-2.19 v 0 c 2.05,0.87 2.89,3.16 1.92,5.14 -2.35,4.95 -4.49,10 -6.41,15.14 -0.75,2.07 -2.98,3.06 -5.03,2.19 z m 14.56,4.09 c -2.49,0.54 -4.94,-1.04 -5.47,-3.53 -0.54,-2.49 1.04,-4.94 3.53,-5.47 2.49,-0.54 4.94,1.04 5.47,3.53 0.54,2.49 -1.04,4.94 -3.53,5.47 z"
762
+ id="path41"
763
+ style="fill:#ffffff" />
764
+ <g
765
+ id="g41" />
766
+ <path
767
+ class="cls-1"
768
+ d="m 144.49,30.73 c -5.48,0 -10.22,3.11 -12.58,7.66 L 102.97,84.06 79.95,47.74 v 43.22 l 13.14,20.73 c 2.22,3.5 6.02,5.4 9.88,5.36 3.86,0.03 7.66,-1.86 9.88,-5.36 l 17.47,-27.56 v 32.09 c 0,7.83 6.35,14.17 14.17,14.17 7.82,0 14.17,-6.35 14.17,-14.17 V 44.9 c 0,-7.83 -6.35,-14.17 -14.17,-14.17 z"
769
+ id="path42"
770
+ style="fill:#ffffff" />
771
+ </g>
772
+ <g
773
+ class="cls-15"
774
+ id="g143"
775
+ transform="matrix(1.0981486,0,0,1.0981486,-16.36716,-17.082802)"
776
+ inkscape:label="light"
777
+ style="display:inline">
778
+ <rect
779
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-opacity:1"
780
+ id="rect144"
781
+ width="213.45572"
782
+ height="213.45572"
783
+ x="0"
784
+ y="0"
785
+ transform="matrix(0.91062357,0,0,0.91062357,14.904322,15.556002)" />
786
+ <g
787
+ id="Layer_1">
788
+ <g
789
+ id="NMDC_Lockup_2_x5F_Stacked_x5F_CLR"
790
+ transform="translate(4.0085766,44.494904)">
791
+ <g
792
+ id="g84">
793
+ <path
794
+ class="cls-19"
795
+ d="M 81.9,17.08 C 82.12,12.92 80.73,9.04 77.98,6.14 75.25,3.26 71.45,1.67 67.3,1.67 c -4.15,0 -7.94,1.59 -10.68,4.47 -2.75,2.89 -4.14,6.78 -3.92,10.94 1.03,24.37 1.03,49.05 0,73.39 -0.22,4.18 1.17,8.06 3.92,10.96 2.73,2.88 6.53,4.47 10.68,4.47 v 0 c 4.15,0 7.94,-1.59 10.68,-4.47 2.75,-2.89 4.14,-6.78 3.92,-10.94 -1.03,-24.37 -1.03,-49.05 0,-73.39 z"
796
+ id="path71" />
797
+ <g
798
+ class="cls-18"
799
+ clip-path="url(#clippath-2)"
800
+ id="g82">
801
+ <g
802
+ id="g81">
803
+ <path
804
+ class="cls-23"
805
+ d="M 84.24,48.55 C 81.65,45 79.19,41.36 76.87,37.63 75.95,36.12 74.17,35.6 72.86,36.49 v 0 c -1.32,0.89 -1.5,2.73 -0.44,4.15 2.59,3.55 5.05,7.19 7.37,10.92 0.92,1.51 2.7,2.03 4.01,1.14 v 0 c 1.32,-0.89 1.5,-2.73 0.44,-4.15 z"
806
+ id="path72" />
807
+ <circle
808
+ class="cls-23"
809
+ cx="73.029999"
810
+ cy="100.07"
811
+ r="7.9099998"
812
+ id="circle72" />
813
+ <circle
814
+ class="cls-23"
815
+ cx="85.239998"
816
+ cy="68.860001"
817
+ r="7.9099998"
818
+ id="circle73" />
819
+ <circle
820
+ class="cls-23"
821
+ cx="66.870003"
822
+ cy="7.5599999"
823
+ r="7.4499998"
824
+ id="circle74" />
825
+ <circle
826
+ class="cls-23"
827
+ cx="76.919998"
828
+ cy="83.440002"
829
+ r="4.8200002"
830
+ id="circle75" />
831
+ <circle
832
+ class="cls-23"
833
+ cx="52.950001"
834
+ cy="63.32"
835
+ r="4.8200002"
836
+ id="circle76" />
837
+ <circle
838
+ class="cls-23"
839
+ cx="78.720001"
840
+ cy="27.959999"
841
+ r="4.8200002"
842
+ id="circle77" />
843
+ <path
844
+ class="cls-23"
845
+ d="m 67.02,26.49 c -3.23,4.58 -6.27,9.29 -9.11,14.12 -1.12,1.95 -3.53,2.56 -5.45,1.33 v 0 c -1.91,-1.23 -2.35,-3.68 -1.04,-5.51 3.23,-4.58 6.27,-9.29 9.11,-14.12 1.12,-1.95 3.53,-2.56 5.45,-1.33 v 0 c 1.91,1.23 2.35,3.68 1.04,5.51 z"
846
+ id="path77" />
847
+ <circle
848
+ class="cls-23"
849
+ cx="65.120003"
850
+ cy="50.990002"
851
+ r="6.0900002"
852
+ id="circle78" />
853
+ <circle
854
+ class="cls-23"
855
+ cx="55.77"
856
+ cy="76.779999"
857
+ r="3.1900001"
858
+ id="circle79" />
859
+ <circle
860
+ class="cls-23"
861
+ cx="58.880001"
862
+ cy="94.889999"
863
+ r="3.1900001"
864
+ id="circle80" />
865
+ <circle
866
+ class="cls-23"
867
+ cx="57.599998"
868
+ cy="90.32"
869
+ r="3.1900001"
870
+ id="circle81" />
871
+ <path
872
+ class="cls-23"
873
+ d="m 74.66,65.72 c -2.46,5.19 -4.7,10.48 -6.72,15.85 -0.79,2.17 -3.12,3.21 -5.26,2.3 v 0 c -2.15,-0.91 -3.02,-3.31 -2.01,-5.38 2.46,-5.19 4.7,-10.48 6.72,-15.85 0.79,-2.17 3.12,-3.21 5.26,-2.3 v 0 c 2.15,0.91 3.02,3.31 2.01,5.38 z"
874
+ id="path81" />
875
+ </g>
876
+ </g>
877
+ <path
878
+ class="cls-10"
879
+ d="m 163.69,17.08 c 0.22,-4.16 -1.17,-8.04 -3.92,-10.94 -2.73,-2.88 -6.53,-4.47 -10.68,-4.47 -4.15,0 -7.94,1.59 -10.68,4.47 -2.75,2.89 -4.14,6.78 -3.92,10.94 1.03,24.37 1.03,49.05 0,73.39 -0.22,4.18 1.17,8.06 3.92,10.96 2.73,2.88 6.53,4.47 10.68,4.47 v 0 c 4.15,0 7.94,-1.59 10.68,-4.47 2.75,-2.89 4.14,-6.78 3.92,-10.94 -1.03,-24.37 -1.03,-49.05 0,-73.39 z"
880
+ id="path82" />
881
+ <path
882
+ class="cls-8"
883
+ d="M 79.85,9.1 V 9.08 C 77.75,5.48 74.46,2.99 70.58,2.06 69.5,1.8 68.4,1.67 67.31,1.67 c -2.81,0 -5.61,0.84 -8.12,2.47 -3.48,2.27 -5.79,5.67 -6.5,9.58 -0.72,3.92 0.24,7.94 2.69,11.3 14.17,19.85 27.66,40.53 40.09,61.48 2.1,3.62 5.39,6.11 9.27,7.04 3.86,0.92 7.91,0.18 11.38,-2.09 3.48,-2.27 5.79,-5.67 6.5,-9.57 0.72,-3.92 -0.23,-7.94 -2.69,-11.3 C 105.76,50.73 92.27,30.05 79.84,9.1 Z"
884
+ id="path83" />
885
+ <path
886
+ class="cls-6"
887
+ d="m 156.98,4.15 c -2.5,-1.63 -5.3,-2.47 -8.12,-2.47 -1.09,0 -2.19,0.13 -3.27,0.39 -3.88,0.92 -7.17,3.42 -9.26,7.02 v 0.02 c -12.44,20.95 -25.93,41.63 -40.09,61.46 -2.47,3.38 -3.42,7.4 -2.7,11.32 0.72,3.91 3.03,7.31 6.5,9.57 3.48,2.27 7.53,3.01 11.38,2.09 3.88,-0.92 7.17,-3.42 9.26,-7.02 12.44,-20.97 25.93,-41.65 40.09,-61.48 2.47,-3.38 3.42,-7.4 2.7,-11.32 -0.72,-3.91 -3.03,-7.31 -6.5,-9.57 z"
888
+ id="path84" />
889
+ </g>
890
+ <g
891
+ id="g103">
892
+ <path
893
+ class="cls-24"
894
+ d="m 66.57,116.95 c -2.81,0 -5.31,1.28 -7.05,3.61 l -0.07,0.1 h -0.44 v -0.25 c 0,-0.93 -0.06,-1.89 -0.12,-2.81 h -5.83 c 0.09,1.2 0.11,2.42 0.11,3.26 v 13.33 h 6.03 v -7.27 c 0,-4.19 2.72,-6.1 5.25,-6.1 2.84,0 4.4,1.73 4.4,4.88 v 8.5 h 6.04 v -9.48 c 0,-5 -2.96,-7.75 -8.33,-7.75 z"
895
+ id="path100" />
896
+ <path
897
+ class="cls-24"
898
+ d="m 105.3,116.95 c -3.05,0 -5.47,1.29 -7,3.73 l -0.25,0.4 -0.19,-0.44 c -1.01,-2.35 -3.16,-3.69 -5.9,-3.69 -3,0 -5.18,1.14 -6.84,3.6 l -0.07,0.11 H 84.6 v -0.25 c 0,-0.93 -0.06,-1.89 -0.12,-2.81 h -5.83 c 0.09,1.2 0.11,2.42 0.11,3.26 v 13.33 h 6.04 v -7.92 c 0,-3.16 1.82,-5.46 4.33,-5.46 3.36,0 3.79,2.61 3.79,4.88 v 8.5 h 6.03 v -8.84 c 0,-2.59 1.82,-4.54 4.23,-4.54 2.55,0 3.89,1.62 3.89,4.67 v 8.7 h 6.03 v -9.45 c 0,-5.16 -2.63,-7.78 -7.82,-7.78 z"
899
+ id="path101" />
900
+ <path
901
+ class="cls-24"
902
+ d="m 138.71,110.11 h -6.04 v 10.1 l -0.43,-0.44 c -1.85,-1.9 -4.17,-2.82 -7.1,-2.82 -5.72,0 -9.42,3.47 -9.42,8.84 0,5.37 3.72,9.04 9.25,9.04 4.25,0 6.08,-1.75 7.47,-3.38 l 0.44,-0.52 v 0.68 c 0,0.96 0.04,1.78 0.11,2.57 h 5.83 c -0.08,-0.78 -0.11,-1.57 -0.11,-2.57 z m -11.53,21.28 c -3.58,0 -5.19,-2.81 -5.19,-5.59 0,-3.12 2.18,-5.39 5.19,-5.39 3.18,0 5.32,2.26 5.32,5.63 0,3.15 -2.19,5.36 -5.32,5.36 z"
903
+ id="path102" />
904
+ <path
905
+ class="cls-24"
906
+ d="m 153.26,131.59 c -3.01,0 -4.81,-2.14 -4.81,-5.73 0,-3.59 1.89,-5.66 4.81,-5.66 2.25,0 3.56,0.97 3.98,2.96 h 6.25 c -0.82,-5.39 -6.74,-6.21 -10.23,-6.21 -3.49,0 -11.25,0.88 -11.25,9.01 0,6.55 5.82,8.87 10.81,8.87 3.74,0 10.06,-0.86 10.88,-6.55 h -6.42 c -0.17,2.07 -1.65,3.3 -4.01,3.3 z"
907
+ id="path103" />
908
+ </g>
909
+ </g>
910
+ <circle
911
+ style="display:none;fill:none;stroke:#000000;stroke-width:1.18016;stroke-opacity:1"
912
+ id="path143"
913
+ cx="112.09322"
914
+ cy="112.7449"
915
+ r="106.13778" />
916
+ </g>
917
+ </g>
918
+ <g
919
+ id="g144"
920
+ inkscape:label="guide"
921
+ transform="matrix(0.31267928,0,0,0.31267928,67.226046,122.57028)"
922
+ sodipodi:insensitive="true"
923
+ style="display:inline">
924
+ <path
925
+ id="path3-7"
926
+ d="M -215,-392 H 467.66665 V 290.66665 H -215 Z"
927
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.33333;stroke-opacity:1" />
928
+ <g
929
+ mask="url(#mask3-6)"
930
+ id="g49"
931
+ clip-path="url(#clipPath49-0)"
932
+ transform="translate(-348.33333,-652.00002)">
933
+ <g
934
+ id="g48">
935
+ <g
936
+ opacity="0.100006"
937
+ clip-path="url(#clipPath10-8)"
938
+ id="g33">
939
+ <path
940
+ d="M 164,548 H 548 V 164 H 164 Z"
941
+ style="fill:#66ddb7;fill-opacity:1;fill-rule:nonzero;stroke:none"
942
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
943
+ clip-path="url(#clipPath9-9)"
944
+ id="path33" />
945
+ </g>
946
+ <path
947
+ d="M 164,548 H 548 V 164 H 164 Z"
948
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
949
+ transform="matrix(1.3333333,0,0,-1.3333333,0,1076)"
950
+ clip-path="url(#clipPath11-3)"
951
+ id="path34" />
952
+ <path
953
+ d="m 0,0 h 345.992 c 1.659,0 3.004,-1.345 3.004,-3.004 v -249.992 c 0,-1.659 -1.345,-3.004 -3.004,-3.004 L 0,-256 c -1.659,0 -3.004,1.345 -3.004,3.004 V -3.004 C -3.004,-1.345 -1.659,0 0,0 Z"
954
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
955
+ transform="matrix(1.3333333,0,0,-1.3333333,244.0052,430.66667)"
956
+ clip-path="url(#clipPath12-0)"
957
+ id="path35" />
958
+ <path
959
+ d="m 0,0 h 249.992 c 1.659,0 3.004,-1.345 3.004,-3.004 v -345.992 c 0,-1.659 -1.345,-3.004 -3.004,-3.004 L 0,-352 c -1.659,0 -3.004,1.345 -3.004,3.004 V -3.004 C -3.004,-1.345 -1.659,0 0,0 Z"
960
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
961
+ transform="matrix(1.3333333,0,0,-1.3333333,308.0052,366.66667)"
962
+ clip-path="url(#clipPath13-3)"
963
+ id="path36-9" />
964
+ <path
965
+ d="m 0,0 h 297.992 c 1.659,0 3.004,-1.345 3.004,-3.004 v -297.992 c 0,-1.659 -1.345,-3.004 -3.004,-3.004 L 0,-304 c -1.659,0 -3.004,1.345 -3.004,3.004 V -3.004 C -3.004,-1.345 -1.659,0 0,0 Z"
966
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
967
+ transform="matrix(1.3333333,0,0,-1.3333333,276.0052,398.66667)"
968
+ clip-path="url(#clipPath14-1)"
969
+ id="path37-5" />
970
+ <path
971
+ d="m 0,0 c 97.202,0 176,-78.798 176,-176 0,-97.202 -78.798,-176 -176,-176 -97.202,0 -176,78.798 -176,176 0,97.202 78.798,176 176,176 z"
972
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
973
+ transform="matrix(1.3333333,0,0,-1.3333333,474.66667,366.66667)"
974
+ clip-path="url(#clipPath15-9)"
975
+ id="path38-3" />
976
+ <path
977
+ d="m 0,0 c 44.183,0 80,-35.817 80,-80 0,-44.183 -35.817,-80 -80,-80 -44.183,0 -80,35.817 -80,80 0,44.183 35.817,80 80,80 z"
978
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
979
+ transform="matrix(1.3333333,0,0,-1.3333333,474.66667,494.66667)"
980
+ clip-path="url(#clipPath16-7)"
981
+ id="path39-3" />
982
+ <g
983
+ opacity="0.300003"
984
+ clip-path="url(#clipPath18-8)"
985
+ id="g40">
986
+ <path
987
+ d="M 0,0 383.226,383.305"
988
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
989
+ transform="matrix(1.3333333,0,0,-1.3333333,219.22587,856.92053)"
990
+ clip-path="url(#clipPath17-4)"
991
+ id="path40-3" />
992
+ </g>
993
+ <g
994
+ opacity="0.300003"
995
+ clip-path="url(#clipPath20-5)"
996
+ id="g41-8">
997
+ <path
998
+ d="M 0,0 -383.107,383.047"
999
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1000
+ transform="matrix(1.3333333,0,0,-1.3333333,729.9752,856.6276)"
1001
+ clip-path="url(#clipPath19-0)"
1002
+ id="path41-5" />
1003
+ </g>
1004
+ <g
1005
+ opacity="0.300003"
1006
+ clip-path="url(#clipPath22-5)"
1007
+ id="g42-8">
1008
+ <path
1009
+ d="M 0,0 V -384"
1010
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1011
+ transform="matrix(1.3333333,0,0,-1.3333333,400,345.33333)"
1012
+ clip-path="url(#clipPath21-7)"
1013
+ id="path42-9" />
1014
+ </g>
1015
+ <g
1016
+ opacity="0.300003"
1017
+ clip-path="url(#clipPath24-0)"
1018
+ id="g43">
1019
+ <path
1020
+ d="M 0,0 V -384"
1021
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1022
+ transform="matrix(1.3333333,0,0,-1.3333333,474.66667,345.33333)"
1023
+ clip-path="url(#clipPath23-5)"
1024
+ id="path43" />
1025
+ </g>
1026
+ <g
1027
+ opacity="0.300003"
1028
+ clip-path="url(#clipPath26-3)"
1029
+ id="g44">
1030
+ <path
1031
+ d="M 0,0 V -384"
1032
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1033
+ transform="matrix(1.3333333,0,0,-1.3333333,549.44013,345.33333)"
1034
+ clip-path="url(#clipPath25-3)"
1035
+ id="path44" />
1036
+ </g>
1037
+ <g
1038
+ opacity="0.300003"
1039
+ clip-path="url(#clipPath28-4)"
1040
+ id="g45">
1041
+ <path
1042
+ d="M 0,0 H -383.733"
1043
+ style="fill:none;stroke:#65dcb7;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1044
+ transform="matrix(1.3333333,0,0,-1.3333333,730.3112,526.66667)"
1045
+ clip-path="url(#clipPath27-7)"
1046
+ id="path45" />
1047
+ </g>
1048
+ <g
1049
+ opacity="0.300003"
1050
+ clip-path="url(#clipPath30-9)"
1051
+ id="g46">
1052
+ <path
1053
+ d="M 0,0 H -383.733"
1054
+ style="fill:none;stroke:#65dcb7;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1055
+ transform="matrix(1.3333333,0,0,-1.3333333,730.3112,601.33333)"
1056
+ clip-path="url(#clipPath29-3)"
1057
+ id="path46" />
1058
+ </g>
1059
+ <g
1060
+ opacity="0.300003"
1061
+ clip-path="url(#clipPath32-7)"
1062
+ id="g47">
1063
+ <path
1064
+ d="M 0,0 H -383.733"
1065
+ style="fill:none;stroke:#65dcb7;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1066
+ transform="matrix(1.3333333,0,0,-1.3333333,730.3112,676)"
1067
+ clip-path="url(#clipPath31-9)"
1068
+ id="path47" />
1069
+ </g>
1070
+ </g>
1071
+ </g>
1072
+ </g>
1073
+ </svg>