maltese 0.9.6 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile +5 -5
  3. data/Gemfile.lock +49 -51
  4. data/lib/maltese/cli.rb +13 -1
  5. data/lib/maltese/datafile.rb +12 -0
  6. data/lib/maltese/sitemap.rb +13 -15
  7. data/lib/maltese/version.rb +1 -1
  8. data/maltese.gemspec +3 -3
  9. data/spec/cli_spec.rb +1 -1
  10. data/spec/fixtures/vcr_cassettes/Maltese_CLI/sitemap/should_succeed.yml +43 -39
  11. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_data/should_report_if_there_are_works_returned_by_the_Datacite_REST_API.yml +14 -12
  12. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/get_total/with_works.yml +14 -12
  13. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/process_data/should_handle_bad_request_errors_with_the_Datacite_REST_API.yml +15 -15
  14. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/process_data/should_handle_internal_server_errors_with_the_Datacite_REST_API.yml +59 -0
  15. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/process_data/should_handle_timeout_errors_with_the_Datacite_REST_API.yml +15 -15
  16. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/process_data/should_retry_2_times_for_bad_request_errors_with_the_Datacite_REST_API.yml +59 -0
  17. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/push_data/should_report_if_there_are_no_works_returned_by_the_Datacite_REST_API.yml +15 -15
  18. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/push_data/should_report_if_there_are_works_returned_by_the_Datacite_REST_API.yml +15 -15
  19. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/queue_jobs/should_report_if_there_are_works_returned_by_the_Datacite_REST_API.yml +43 -39
  20. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/send_notification_to_slack/send_error.yml +60 -0
  21. data/spec/fixtures/vcr_cassettes/Maltese_Sitemap/send_notification_to_slack/send_info.yml +60 -0
  22. data/spec/sitemap_spec.rb +36 -8
  23. metadata +12 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cec049c99f3fa27fe10d0117408ac6c376747511ddfb59743211d9c5fb03a555
4
- data.tar.gz: fdb7a654761096dee2469fc76c76465469651977a4ffdef6c7c3c926786b24f0
3
+ metadata.gz: 61bef342aad709b402f6d801953dd7747edd78d1f5b27064ba262b7dfae75bc4
4
+ data.tar.gz: '08a035f43c071903fd9c4e0a00250167de8941989f90cea107ca3b7ce45da3f3'
5
5
  SHA512:
6
- metadata.gz: 4fa6c309416bbf9216b34f6330833a19f94eef541575cd0ef337ee121b277a846d97037e25dcecf82774a5d908847bc6d0ac37cb220fa0fbd34be0b5d6b73863
7
- data.tar.gz: fc7fe1370573ce34a2fdce52fd9b9b301fc968fca2deab75a8675a35e61e31338e073ea3fde9eebb347f7f51daef0759ebbc755191bc32c4765d164eb498a7fb
6
+ metadata.gz: 5af6f7a5312ed40d84037b768d75445764e338acba801e05213482ff1733eab702e038bcaa073319347e755a04d42b776354c2b8ee68856f2afe12a50639eca0
7
+ data.tar.gz: bc36fd7f055d1a85eb0505c654d13501a48648ec5ac5c673de67ad88b8a5775dff679d7e8f2dd893960ce5549ac69fcc58bb37f71f1e872b39c9586533279f22
data/Dockerfile CHANGED
@@ -1,16 +1,16 @@
1
- FROM phusion/passenger-full:0.9.30
1
+ FROM phusion/passenger-full:1.0.9
2
2
  LABEL maintainer="mfenner@datacite.org"
3
3
 
4
- # Install Ruby 2.4.4
5
- RUN bash -lc 'rvm --default use ruby-2.4.4'
4
+ # Install Ruby 2.6.5
5
+ RUN bash -lc 'rvm --default use ruby-2.6.5'
6
6
 
7
- ENV PATH="/usr/local/rvm/gems/ruby-2.4.4/bin:${PATH}"
7
+ ENV PATH="/usr/local/rvm/gems/ruby-2.6.5/bin:${PATH}"
8
8
 
9
9
  # Update installed APT packages, clean up APT when done.
10
10
  RUN apt-get update && apt-get upgrade -y -o Dpkg::Options::="--force-confold" && \
11
11
  apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
12
12
 
13
13
  # Install maltese gem
14
- RUN /sbin/setuser app gem install maltese -v 0.9.6
14
+ RUN /sbin/setuser app gem install maltese -v 0.9.12
15
15
 
16
16
  CMD maltese sitemap --sitemap_bucket $SITEMAP_BUCKET --rack_env $RACK_ENV --access_key $AWS_ACCESS_KEY_ID --secret_key $AWS_SECRET_ACCESS_KEY --region $AWS_REGION --slack_webhook_url $SLACK_WEBHOOK_URL
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- maltese (0.9.6)
4
+ maltese (0.9.12)
5
5
  activesupport (>= 4.2.5, < 6)
6
6
  aws-sdk-s3 (~> 1.19)
7
7
  dotenv (~> 2.1, >= 2.1.1)
@@ -17,108 +17,106 @@ PATH
17
17
  GEM
18
18
  remote: https://rubygems.org/
19
19
  specs:
20
- activesupport (5.2.4)
20
+ activesupport (5.2.4.4)
21
21
  concurrent-ruby (~> 1.0, >= 1.0.2)
22
22
  i18n (>= 0.7, < 2)
23
23
  minitest (~> 5.1)
24
24
  tzinfo (~> 1.1)
25
25
  addressable (2.7.0)
26
26
  public_suffix (>= 2.0.2, < 5.0)
27
- aws-eventstream (1.0.3)
28
- aws-partitions (1.253.0)
29
- aws-sdk-core (3.85.1)
30
- aws-eventstream (~> 1.0, >= 1.0.2)
27
+ aws-eventstream (1.1.0)
28
+ aws-partitions (1.388.0)
29
+ aws-sdk-core (3.109.1)
30
+ aws-eventstream (~> 1, >= 1.0.2)
31
31
  aws-partitions (~> 1, >= 1.239.0)
32
32
  aws-sigv4 (~> 1.1)
33
33
  jmespath (~> 1.0)
34
- aws-sdk-kms (1.27.0)
35
- aws-sdk-core (~> 3, >= 3.71.0)
34
+ aws-sdk-kms (1.39.0)
35
+ aws-sdk-core (~> 3, >= 3.109.0)
36
36
  aws-sigv4 (~> 1.1)
37
- aws-sdk-s3 (1.59.0)
38
- aws-sdk-core (~> 3, >= 3.83.0)
37
+ aws-sdk-s3 (1.83.1)
38
+ aws-sdk-core (~> 3, >= 3.109.0)
39
39
  aws-sdk-kms (~> 1)
40
40
  aws-sigv4 (~> 1.1)
41
- aws-sigv4 (1.1.0)
42
- aws-eventstream (~> 1.0, >= 1.0.2)
41
+ aws-sigv4 (1.2.2)
42
+ aws-eventstream (~> 1, >= 1.0.2)
43
43
  builder (3.2.4)
44
44
  codeclimate-test-reporter (1.0.9)
45
45
  simplecov (<= 0.13)
46
- concurrent-ruby (1.1.5)
47
- crack (0.4.3)
48
- safe_yaml (~> 1.0.0)
49
- diff-lcs (1.3)
46
+ concurrent-ruby (1.1.7)
47
+ crack (0.4.4)
48
+ diff-lcs (1.4.4)
50
49
  docile (1.1.5)
51
- dotenv (2.7.5)
52
- excon (0.67.0)
50
+ dotenv (2.7.6)
51
+ excon (0.71.1)
53
52
  faraday (0.17.0)
54
53
  multipart-post (>= 1.2, < 3)
55
54
  faraday-encoding (0.0.5)
56
55
  faraday
57
56
  faraday_middleware (0.13.1)
58
57
  faraday (>= 0.7.4, < 1.0)
59
- hashdiff (1.0.0)
60
- i18n (1.7.0)
58
+ hashdiff (1.0.1)
59
+ i18n (1.8.5)
61
60
  concurrent-ruby (~> 1.0)
62
61
  jmespath (1.4.0)
63
- json (2.3.0)
62
+ json (2.3.1)
64
63
  logstash-event (1.2.02)
65
64
  logstash-logger (0.26.1)
66
65
  logstash-event (~> 1.2)
67
- maremma (4.4)
68
- activesupport (>= 4.2.5, < 6)
66
+ maremma (4.7)
67
+ activesupport (>= 4.2.5)
69
68
  addressable (>= 2.3.6)
70
69
  builder (~> 3.2, >= 3.2.2)
71
- excon (~> 0.67.0)
72
- faraday (~> 0.17.0)
70
+ excon (~> 0.71.0)
71
+ faraday (= 0.17.0)
73
72
  faraday-encoding (~> 0.0.4)
74
73
  faraday_middleware (~> 0.13.1)
75
- multi_json (~> 1.12)
76
74
  nokogiri (~> 1.10.4)
77
75
  oj (>= 2.8.3)
78
- mime-types (3.3)
76
+ oj_mimic_json (~> 1.0, >= 1.0.1)
77
+ mime-types (3.3.1)
79
78
  mime-types-data (~> 3.2015)
80
- mime-types-data (3.2019.1009)
79
+ mime-types-data (3.2020.0512)
81
80
  mini_portile2 (2.4.0)
82
- minitest (5.13.0)
83
- multi_json (1.14.1)
81
+ minitest (5.14.2)
84
82
  multipart-post (2.1.1)
85
- nokogiri (1.10.7)
83
+ nokogiri (1.10.10)
86
84
  mini_portile2 (~> 2.4.0)
87
- oj (3.10.0)
88
- public_suffix (4.0.1)
89
- rack (2.0.7)
85
+ oj (3.10.15)
86
+ oj_mimic_json (1.0.1)
87
+ public_suffix (4.0.6)
88
+ rack (2.2.3)
90
89
  rack-test (0.8.3)
91
90
  rack (>= 1.0, < 3)
92
91
  rake (12.3.3)
93
92
  retriable (3.1.2)
94
- rspec (3.9.0)
95
- rspec-core (~> 3.9.0)
96
- rspec-expectations (~> 3.9.0)
97
- rspec-mocks (~> 3.9.0)
98
- rspec-core (3.9.0)
99
- rspec-support (~> 3.9.0)
100
- rspec-expectations (3.9.0)
93
+ rspec (3.10.0)
94
+ rspec-core (~> 3.10.0)
95
+ rspec-expectations (~> 3.10.0)
96
+ rspec-mocks (~> 3.10.0)
97
+ rspec-core (3.10.0)
98
+ rspec-support (~> 3.10.0)
99
+ rspec-expectations (3.10.0)
101
100
  diff-lcs (>= 1.2.0, < 2.0)
102
- rspec-support (~> 3.9.0)
103
- rspec-mocks (3.9.0)
101
+ rspec-support (~> 3.10.0)
102
+ rspec-mocks (3.10.0)
104
103
  diff-lcs (>= 1.2.0, < 2.0)
105
- rspec-support (~> 3.9.0)
106
- rspec-support (3.9.0)
107
- safe_yaml (1.0.5)
104
+ rspec-support (~> 3.10.0)
105
+ rspec-support (3.10.0)
108
106
  simplecov (0.13.0)
109
107
  docile (~> 1.1.0)
110
108
  json (>= 1.8, < 3)
111
109
  simplecov-html (~> 0.10.0)
112
110
  simplecov-html (0.10.2)
113
- sitemap_generator (6.0.2)
111
+ sitemap_generator (6.1.2)
114
112
  builder (~> 3.0)
115
113
  slack-notifier (2.3.2)
116
114
  thor (0.20.3)
117
115
  thread_safe (0.3.6)
118
- tzinfo (1.2.5)
116
+ tzinfo (1.2.7)
119
117
  thread_safe (~> 0.1)
120
118
  vcr (3.0.3)
121
- webmock (3.7.6)
119
+ webmock (3.9.3)
122
120
  addressable (>= 2.3.6)
123
121
  crack (>= 0.3.2)
124
122
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -127,7 +125,7 @@ PLATFORMS
127
125
  ruby
128
126
 
129
127
  DEPENDENCIES
130
- bundler (~> 1.0)
128
+ bundler (~> 2.0)
131
129
  codeclimate-test-reporter (~> 1.0, >= 1.0.8)
132
130
  maltese!
133
131
  rack-test (~> 0)
@@ -138,4 +136,4 @@ DEPENDENCIES
138
136
  webmock (~> 3.0, >= 3.0.1)
139
137
 
140
138
  BUNDLED WITH
141
- 1.17.3
139
+ 2.1.4
@@ -17,7 +17,7 @@ module Maltese
17
17
  puts Toccatore::VERSION
18
18
  end
19
19
 
20
- desc "sitemap", "generate sitemap for DataCite Search"
20
+ desc "sitemap", "generate sitemap for DataCite Commons"
21
21
  method_option :sitemap_bucket, type: :string
22
22
  method_option :rack_env, type: :string
23
23
  method_option :access_key, type: :string
@@ -28,5 +28,17 @@ module Maltese
28
28
  sitemap = Maltese::Sitemap.new(options)
29
29
  sitemap.queue_jobs
30
30
  end
31
+
32
+ desc "datafile", "generate datafile for DataCite"
33
+ method_option :datafile_bucket, type: :string
34
+ method_option :rack_env, type: :string
35
+ method_option :access_key, type: :string
36
+ method_option :secret_key, type: :string
37
+ method_option :region, type: :string
38
+ method_option :slack_webhook_url, type: :string
39
+ def datafile
40
+ datafile = Maltese::Datafile.new(options)
41
+ datafile.queue_jobs
42
+ end
31
43
  end
32
44
  end
@@ -0,0 +1,12 @@
1
+ require 'logstash-logger'
2
+ require 'retriable'
3
+ require 'slack-notifier'
4
+
5
+ module Maltese
6
+ class ::InternalServerError < StandardError; end
7
+ class ::BadGatewayError < StandardError; end
8
+
9
+ class Datafile
10
+
11
+ end
12
+ end
@@ -3,6 +3,7 @@ require 'retriable'
3
3
  require 'slack-notifier'
4
4
 
5
5
  module Maltese
6
+ class ::InternalServerError < StandardError; end
6
7
  class ::BadGatewayError < StandardError; end
7
8
 
8
9
  class Sitemap
@@ -24,7 +25,7 @@ module Maltese
24
25
  end
25
26
 
26
27
  # icon for Slack messages
27
- SLACK_ICON_URL = "https://github.com/datacite/segugio/blob/master/source/images/fabrica.png"
28
+ SLACK_ICON_URL = "https://raw.githubusercontent.com/datacite/homepage/master/source/images/fabrica.png"
28
29
 
29
30
  def initialize(attributes={})
30
31
  @sitemap_bucket = attributes[:sitemap_bucket].presence || "search.test.datacite.org"
@@ -38,11 +39,11 @@ module Maltese
38
39
  end
39
40
 
40
41
  def sitemap_url
41
- rack_env == "production" ? "https://search.datacite.org/" : "https://search.test.datacite.org/"
42
+ rack_env == "production" ? "https://commons.datacite.org/" : "https://commons.stage.datacite.org/"
42
43
  end
43
44
 
44
45
  def slack_title
45
- rack_env == "production" ? "DataCite Fabrica" : "DataCite Fabrica Test"
46
+ rack_env == "production" ? "DataCite Commons" : "DataCite Commons Stage"
46
47
  end
47
48
 
48
49
  def sitemaps_path
@@ -50,7 +51,7 @@ module Maltese
50
51
  end
51
52
 
52
53
  def search_path
53
- rack_env == "production" ? "https://api.datacite.org/dois?" : "https://api.test.datacite.org/dois?"
54
+ rack_env == "production" ? "https://api.datacite.org/dois?" : "https://api.stage.datacite.org/dois?"
54
55
  end
55
56
 
56
57
  def timeout
@@ -104,6 +105,7 @@ module Maltese
104
105
 
105
106
  params = {
106
107
  "fields[dois]" => "doi,updated",
108
+ "exclude-registration-agencies" => "true",
107
109
  "page[scroll]" => "7m",
108
110
  "page[size]" => options[:size]
109
111
  }
@@ -113,7 +115,6 @@ module Maltese
113
115
  def process_data(options = {})
114
116
  options[:start_time] = Time.now
115
117
  link_count = 0
116
- error_count = 0
117
118
 
118
119
  # walk through paginated results
119
120
  while options[:url] do
@@ -123,11 +124,12 @@ module Maltese
123
124
  # speed up tests
124
125
  base_interval = rack_env == "test" ? 0.1 : 10
125
126
 
126
- # retry on temporal errors (status codes 408 and 502)
127
+ # retry on temporal errors (status codes 408, 500 and 502)
127
128
  Retriable.retriable(base_interval: base_interval, multiplier: 2) do
128
129
  response = get_data(options[:url])
129
130
 
130
131
  raise Timeout::Error, "A timeout error occured for URL #{options[:url]}." if response.status == 408
132
+ raise InternalServerError, "An internal server error occured for URL #{options[:url]}." if response.status == 500
131
133
  raise BadGatewayError, "A bad gateway error occured for URL #{options[:url]}." if response.status == 502
132
134
  end
133
135
 
@@ -138,12 +140,10 @@ module Maltese
138
140
  else
139
141
  logger.error "An error occured for URL #{options[:url]}."
140
142
  logger.error "Error: #{response.body.fetch("errors").inspect}" if response.body.fetch("errors", nil).present?
141
- error_count += 1
142
143
  options[:url] = nil
143
144
  end
144
145
  rescue => exception
145
146
  logger.error "Error: #{exception.message}"
146
- error_count += 1
147
147
  fields = [
148
148
  { title: "Error", value: exception.message },
149
149
  { title: "Number of DOIs", value: sitemap.sitemap_index.total_link_count.to_s(:delimited), short: true },
@@ -158,8 +158,6 @@ module Maltese
158
158
  end
159
159
  end
160
160
 
161
- return link_count if error_count > 0
162
-
163
161
  push_data(options)
164
162
  end
165
163
 
@@ -169,7 +167,7 @@ module Maltese
169
167
 
170
168
  def parse_data(result)
171
169
  Array.wrap(result.body.fetch("data", nil)).each do |item|
172
- loc = "/works/" + item.dig("attributes", "doi")
170
+ loc = "/doi.org/" + item.dig("attributes", "doi")
173
171
  sitemap.add loc, changefreq: "weekly", lastmod: item.dig("attributes", "updated")
174
172
  end
175
173
  sitemap.sitemap.link_count
@@ -201,12 +199,12 @@ module Maltese
201
199
  }.compact
202
200
 
203
201
  begin
204
- notifier = Slack::Notifier.new slack_webhook_url,
205
- username: "Fabrica",
206
- icon_url: SLACK_ICON_URL
202
+ notifier = Slack::Notifier.new(slack_webhook_url,
203
+ username: "Fabrica",
204
+ icon_url: SLACK_ICON_URL)
207
205
  response = notifier.ping attachments: [attachment]
208
206
  response.first.body
209
- rescue Slack::Notifier::APIError => exception
207
+ rescue => exception
210
208
  logger.error exception.message
211
209
  end
212
210
  end
@@ -1,3 +1,3 @@
1
1
  module Maltese
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.12"
3
3
  end
@@ -6,9 +6,9 @@ Gem::Specification.new do |s|
6
6
  s.email = "mfenner@datacite.org"
7
7
  s.name = "maltese"
8
8
  s.homepage = "https://github.com/datacite/maltese"
9
- s.summary = "Ruby library to generate sitemap for DataCite Search"
9
+ s.summary = "Ruby library to generate sitemap for DataCite Commons"
10
10
  s.date = Date.today
11
- s.description = "Ruby library to generate sitemap for DataCite Search."
11
+ s.description = "Ruby library to generate sitemap for DataCite Commons."
12
12
  s.require_paths = ["lib"]
13
13
  s.version = Maltese::VERSION
14
14
  s.extra_rdoc_files = ["README.md"]
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
26
26
  s.add_dependency 'sitemap_generator', '~> 6.0'
27
27
  s.add_dependency 'aws-sdk-s3', '~> 1.19'
28
28
  s.add_dependency 'mime-types', '~> 3.1'
29
- s.add_development_dependency 'bundler', '~> 1.0'
29
+ s.add_development_dependency 'bundler', '~> 2.0'
30
30
  s.add_development_dependency 'rspec', '~> 3.4'
31
31
  s.add_development_dependency 'rake', '~> 12.0'
32
32
  s.add_development_dependency 'rack-test', '~> 0'
@@ -16,7 +16,7 @@ describe Maltese::CLI do
16
16
  sitemap = Zlib::GzipReader.open("public/sitemaps/sitemap.xml.gz") { |gz| gz.read }
17
17
  doc = Nokogiri::XML(sitemap)
18
18
  expect(doc.xpath("//xmlns:url").size).to eq(1001)
19
- expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.4124/ccnlgrf")
19
+ expect(doc.xpath("//xmlns:loc").last.text).to eq("https://commons.stage.datacite.org/doi.org/10.70122/fk2/hlrkok")
20
20
  end
21
21
  end
22
22
  end
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
5
+ uri: https://api.stage.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Mozilla/5.0 (compatible; Maremma/4.4; +https://github.com/datacite/maremma)
11
+ - Mozilla/5.0 (compatible; Maremma/4.7; +https://github.com/datacite/maremma)
12
12
  Accept:
13
13
  - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
14
14
  response:
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  Date:
20
- - Thu, 12 Dec 2019 09:06:39 GMT
20
+ - Sun, 01 Nov 2020 07:44:05 GMT
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Connection:
@@ -30,30 +30,32 @@ http_interactions:
30
30
  - max-age=0, private, must-revalidate
31
31
  Vary:
32
32
  - Accept-Encoding, Origin
33
- X-Request-Id:
34
- - 3070b773-0b59-4b6f-974b-3b143e4bc506
35
33
  Etag:
36
- - W/"9d697ab860c84841d0b54855f3fea259"
34
+ - W/"ee00df7be2e317035bb8d8bc7ff42edb"
37
35
  X-Runtime:
38
- - '0.708826'
36
+ - '0.331981'
37
+ X-Rack-Cors:
38
+ - miss; no-origin
39
+ X-Request-Id:
40
+ - d2e2b7a0-c31f-4ef3-933a-98def20e3903
39
41
  X-Powered-By:
40
- - Phusion Passenger 6.0.4
42
+ - Phusion Passenger 6.0.6
41
43
  Server:
42
- - nginx/1.17.3 + Phusion Passenger 6.0.4
44
+ - nginx/1.14.0 + Phusion Passenger 6.0.6
43
45
  body:
44
46
  encoding: ASCII-8BIT
45
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NLFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY00WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NOFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NLFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY00WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NOFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
46
- http_version:
47
- recorded_at: Thu, 12 Dec 2019 09:06:39 GMT
47
+ string: '{"data":[{"id":"10.25601/2f56-s909","type":"dois","attributes":{"doi":"10.25601/2f56-s909","updated":"2020-10-24T10:39:27.000Z"},"relationships":{}}],"meta":{"total":207479,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAARLGkFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxphZCRlJGMEhXNVJpYWNqUXJXOUlwSUNRAAAAAABEsaUWQkZSRjBIVzVSaWFjalFyVzlJcElDUQAAAAAARLGnFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxqBZCRlJGMEhXNVJpYWNqUXJXOUlwSUNR"},"links":{"self":"https://api.stage.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.stage.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAARLGkFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxphZCRlJGMEhXNVJpYWNqUXJXOUlwSUNRAAAAAABEsaUWQkZSRjBIVzVSaWFjalFyVzlJcElDUQAAAAAARLGnFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxqBZCRlJGMEhXNVJpYWNqUXJXOUlwSUNR"}}'
48
+ http_version:
49
+ recorded_at: Sun, 01 Nov 2020 07:44:05 GMT
48
50
  - request:
49
51
  method: get
50
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
52
+ uri: https://api.stage.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
51
53
  body:
52
54
  encoding: US-ASCII
53
55
  string: ''
54
56
  headers:
55
57
  User-Agent:
56
- - Mozilla/5.0 (compatible; Maremma/4.4; +https://github.com/datacite/maremma)
58
+ - Mozilla/5.0 (compatible; Maremma/4.7; +https://github.com/datacite/maremma)
57
59
  Accept:
58
60
  - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
59
61
  response:
@@ -62,7 +64,7 @@ http_interactions:
62
64
  message: OK
63
65
  headers:
64
66
  Date:
65
- - Thu, 12 Dec 2019 09:06:43 GMT
67
+ - Sun, 01 Nov 2020 07:44:06 GMT
66
68
  Content-Type:
67
69
  - application/json; charset=utf-8
68
70
  Connection:
@@ -75,35 +77,37 @@ http_interactions:
75
77
  - max-age=0, private, must-revalidate
76
78
  Vary:
77
79
  - Accept-Encoding, Origin
78
- X-Request-Id:
79
- - 2b360417-1eb6-43b9-a506-06e15e48d644
80
80
  Etag:
81
- - W/"0748afdc51480920d9fe187fa67ccb4b"
81
+ - W/"be2e55d85aeb5afeaabd773aa3c1d82c"
82
82
  X-Runtime:
83
- - '3.149990'
83
+ - '1.562834'
84
+ X-Rack-Cors:
85
+ - miss; no-origin
86
+ X-Request-Id:
87
+ - 2f4762bf-089e-4ac8-a0c9-df4880b27850
84
88
  X-Powered-By:
85
- - Phusion Passenger 6.0.4
89
+ - Phusion Passenger 6.0.6
86
90
  Server:
87
- - nginx/1.17.3 + Phusion Passenger 6.0.4
91
+ - nginx/1.14.0 + Phusion Passenger 6.0.6
88
92
  body:
89
93
  encoding: ASCII-8BIT
90
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104.v1","updated":"2019-12-12T06:41:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672.v1","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102.v1","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670.v1","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100.v1","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668","updated":"2019-12-12T06:33:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668.v1","updated":"2019-12-12T06:33:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666.v1","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664.v1","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662.v1","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.33593/morressier.5ccac616cc2d79d348734c09","type":"dois","attributes":{"doi":"10.33593/morressier.5ccac616cc2d79d348734c09","updated":"2019-12-12T06:13:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","type":"dois","attributes":{"doi":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","updated":"2019-12-12T05:41:49.000Z"},"relationships":{}},{"id":"10.70118/00001176.0","type":"dois","attributes":{"doi":"10.70118/00001176.0","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001176.1","type":"dois","attributes":{"doi":"10.70118/00001176.1","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001608","type":"dois","attributes":{"doi":"10.70118/00001608","updated":"2019-12-12T05:24:03.000Z"},"relationships":{}},{"id":"10.70118/00001607","type":"dois","attributes":{"doi":"10.70118/00001607","updated":"2019-12-12T05:24:02.000Z"},"relationships":{}},{"id":"10.70118/00001605","type":"dois","attributes":{"doi":"10.70118/00001605","updated":"2019-12-12T04:32:22.000Z"},"relationships":{}},{"id":"10.70118/00001602","type":"dois","attributes":{"doi":"10.70118/00001602","updated":"2019-12-12T04:14:57.000Z"},"relationships":{}},{"id":"10.70118/00001604","type":"dois","attributes":{"doi":"10.70118/00001604","updated":"2019-12-12T04:13:56.000Z"},"relationships":{}},{"id":"10.70118/00001603","type":"dois","attributes":{"doi":"10.70118/00001603","updated":"2019-12-12T04:13:55.000Z"},"relationships":{}},{"id":"10.70118/00001601","type":"dois","attributes":{"doi":"10.70118/00001601","updated":"2019-12-12T04:02:20.000Z"},"relationships":{}},{"id":"10.70112/obfgp9","type":"dois","attributes":{"doi":"10.70112/obfgp9","updated":"2019-12-12T02:33:45.000Z"},"relationships":{}},{"id":"10.70112/kwavz9","type":"dois","attributes":{"doi":"10.70112/kwavz9","updated":"2019-12-12T02:33:38.000Z"},"relationships":{}},{"id":"10.70112/r7jqmd","type":"dois","attributes":{"doi":"10.70112/r7jqmd","updated":"2019-12-12T02:33:30.000Z"},"relationships":{}},{"id":"10.70112/exn2dn","type":"dois","attributes":{"doi":"10.70112/exn2dn","updated":"2019-12-12T02:33:23.000Z"},"relationships":{}},{"id":"10.70112/1kebul","type":"dois","attributes":{"doi":"10.70112/1kebul","updated":"2019-12-12T02:33:16.000Z"},"relationships":{}},{"id":"10.70112/osbbcj","type":"dois","attributes":{"doi":"10.70112/osbbcj","updated":"2019-12-12T02:33:09.000Z"},"relationships":{}},{"id":"10.70112/c3kehg","type":"dois","attributes":{"doi":"10.70112/c3kehg","updated":"2019-12-12T02:33:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606.v1","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600.v1","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594.v1","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592.v1","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588.v1","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586.v1","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582.v1","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584.v1","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580.v1","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576.v1","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572.v1","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564.v1","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560.v1","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086.v1","updated":"2019-12-12T02:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554.v1","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534.v1","updated":"2019-12-12T02:22:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534","updated":"2019-12-12T02:22:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558","updated":"2019-12-12T02:22:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558.v1","updated":"2019-12-12T02:22:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556.v1","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552.v1","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544.v1","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542.v1","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530.v1","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540.v1","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538.v1","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536","updated":"2019-12-12T02:20:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536.v1","updated":"2019-12-12T02:20:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532.v1","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526.v1","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094.v1","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516.v1","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512.v1","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500.v1","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498.v1","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496.v1","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494.v1","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492.v1","updated":"2019-12-12T02:10:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492","updated":"2019-12-12T02:10:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v1","updated":"2019-12-12T02:10:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v2","updated":"2019-12-12T02:10:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490","updated":"2019-12-12T02:10:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488","updated":"2019-12-12T02:09:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488.v1","updated":"2019-12-12T02:09:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486.v1","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484.v1","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470.v1","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482.v1","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480.v1","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472.v1","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478","updated":"2019-12-12T02:08:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478.v1","updated":"2019-12-12T02:08:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476.v1","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474.v1","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v2","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v1","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416.v1","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380.v1","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350.v1","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088.v1","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086","updated":"2019-12-12T02:02:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/uxwanp","type":"dois","attributes":{"doi":"10.70122/fk2/uxwanp","updated":"2019-12-12T02:02:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460.v1","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456","updated":"2019-12-12T02:01:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456.v1","updated":"2019-12-12T02:01:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452.v1","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432.v1","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414.v1","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370.v1","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392.v1","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394.v1","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366.v1","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358.v1","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344.v1","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352.v1","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346.v1","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342.v1","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338.v1","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336.v1","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334.v1","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v2","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v1","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332.v1","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330.v1","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322.v1","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324.v1","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316.v1","updated":"2019-12-12T01:52:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316","updated":"2019-12-12T01:52:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318.v1","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306.v1","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v2","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264","updated":"2019-12-12T01:49:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292.v1","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282.v1","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288.v1","updated":"2019-12-12T01:47:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288","updated":"2019-12-12T01:47:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284.v1","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274.v1","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280.v1","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276.v1","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268.v1","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258.v1","updated":"2019-12-12T01:45:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258","updated":"2019-12-12T01:45:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260.v1","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254.v1","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262.v1","updated":"2019-12-12T01:45:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262","updated":"2019-12-12T01:45:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244.v1","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246","updated":"2019-12-12T01:44:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242.v1","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236.v1","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232.v1","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224.v1","updated":"2019-12-12T01:43:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224","updated":"2019-12-12T01:43:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228.v1","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234","updated":"2019-12-12T01:42:44.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36c","type":"dois","attributes":{"doi":"10.15771/imejidev.36c","updated":"2019-12-12T01:42:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230.v1","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202.v1","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196.v1","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180.v1","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170.v1","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36b","type":"dois","attributes":{"doi":"10.15771/imejidev.36b","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174.v1","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v2","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v1","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158","updated":"2019-12-12T01:37:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162.v1","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154.v1","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156.v1","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148.v1","updated":"2019-12-12T01:36:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148","updated":"2019-12-12T01:36:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150.v1","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36a","type":"dois","attributes":{"doi":"10.15771/imejidev.36a","updated":"2019-12-12T01:36:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142.v1","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v2","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v1","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138","updated":"2019-12-12T01:35:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140","updated":"2019-12-12T01:35:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140.v1","updated":"2019-12-12T01:35:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136.v1","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134.v1","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132.v1","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130.v1","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126.v1","updated":"2019-12-12T01:33:05.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126","updated":"2019-12-12T01:33:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122","updated":"2019-12-12T01:32:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122.v1","updated":"2019-12-12T01:32:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120.v1","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116.v1","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128.v1","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v2","updated":"2019-12-12T01:32:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v3","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657124","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657124","updated":"2019-12-12T01:32:14.000Z"},"relationships":{}},{"id":"10.15771/imejidev.369","type":"dois","attributes":{"doi":"10.15771/imejidev.369","updated":"2019-12-12T01:32:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657118","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657118","updated":"2019-12-12T01:32:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v1","updated":"2019-12-12T01:31:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114.v1","updated":"2019-12-12T01:31:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114","updated":"2019-12-12T01:31:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112.v1","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108.v1","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094.v1","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084.v1","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074.v1","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066.v1","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060.v1","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058.v1","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.15771/imejidev.368","type":"dois","attributes":{"doi":"10.15771/imejidev.368","updated":"2019-12-12T01:29:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030.v1","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020.v1","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012.v1","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010.v1","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008","updated":"2019-12-12T01:28:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008.v1","updated":"2019-12-12T01:28:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656996","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656996","updated":"2019-12-12T01:27:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980.v1","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970.v1","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948.v1","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946.v1","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962.v1","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956.v1","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938.v1","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930.v1","updated":"2019-12-12T01:25:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930","updated":"2019-12-12T01:25:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882.v1","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078.v1","updated":"2019-12-12T01:23:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078","updated":"2019-12-12T01:22:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656880","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656880","updated":"2019-12-12T01:22:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068.v1","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860.v1","updated":"2019-12-12T01:20:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860","updated":"2019-12-12T01:20:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868.v1","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856.v1","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060.v1","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844.v1","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840.v1","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v2","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834.v1","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832.v1","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830.v1","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828.v1","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826.v1","updated":"2019-12-12T01:14:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826","updated":"2019-12-12T01:14:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v1","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v2","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822.v1","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v2","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v1","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820.v1","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030","updated":"2019-12-12T01:12:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814.v1","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026.v1","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v1","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v2","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810.v1","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808.v1","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040","updated":"2019-12-12T01:12:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806.v1","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804.v1","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798.v1","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796.v1","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794.v1","updated":"2019-12-12T01:12:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020.v1","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788.v1","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786.v1","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v2","updated":"2019-12-12T01:11:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018","updated":"2019-12-12T01:11:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784.v1","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782.v1","updated":"2019-12-12T01:11:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782","updated":"2019-12-12T01:11:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780.v1","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778.v1","updated":"2019-12-12T01:11:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778","updated":"2019-12-12T01:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776.v1","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774.v1","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772.v1","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770.v1","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768.v1","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766.v1","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764.v1","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.17889/e115907v1","type":"dois","attributes":{"doi":"10.17889/e115907v1","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e115907","type":"dois","attributes":{"doi":"10.17889/e115907","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e108317v4","type":"dois","attributes":{"doi":"10.17889/e108317v4","updated":"2019-12-12T00:30:07.000Z"},"relationships":{}},{"id":"10.17889/e115891v2","type":"dois","attributes":{"doi":"10.17889/e115891v2","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115052v2-28719","type":"dois","attributes":{"doi":"10.17889/e115052v2-28719","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115276v4","type":"dois","attributes":{"doi":"10.17889/e115276v4","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e107582v19","type":"dois","attributes":{"doi":"10.17889/e107582v19","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115891v1","type":"dois","attributes":{"doi":"10.17889/e115891v1","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115276","type":"dois","attributes":{"doi":"10.17889/e115276","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e115276v3","type":"dois","attributes":{"doi":"10.17889/e115276v3","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e107582v18","type":"dois","attributes":{"doi":"10.17889/e107582v18","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e108317v3","type":"dois","attributes":{"doi":"10.17889/e108317v3","updated":"2019-12-12T00:30:03.000Z"},"relationships":{}},{"id":"10.17889/e115052v1","type":"dois","attributes":{"doi":"10.17889/e115052v1","updated":"2019-12-12T00:30:02.000Z"},"relationships":{}},{"id":"10.17889/e100852v3","type":"dois","attributes":{"doi":"10.17889/e100852v3","updated":"2019-12-12T00:30:01.000Z"},"relationships":{}},{"id":"10.17889/e107582","type":"dois","attributes":{"doi":"10.17889/e107582","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.17889/e100852","type":"dois","attributes":{"doi":"10.17889/e100852","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19677","type":"dois","attributes":{"doi":"10.23718/pdbp/19677","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19678","type":"dois","attributes":{"doi":"10.23718/pdbp/19678","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.0260/co.2433788.v1","type":"dois","attributes":{"doi":"10.0260/co.2433788.v1","updated":"2019-12-12T00:01:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1794216163","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1794216163","updated":"2019-12-11T23:18:29.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17939dba6b","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17939dba6b","updated":"2019-12-11T23:18:24.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1780957357","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1780957357","updated":"2019-12-11T23:13:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17802a4376","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17802a4376","updated":"2019-12-11T23:13:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177fd8ce0d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177fd8ce0d","updated":"2019-12-11T23:13:04.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f882f66","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f882f66","updated":"2019-12-11T23:12:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f374b52","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f374b52","updated":"2019-12-11T23:12:54.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177ee5c490","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177ee5c490","updated":"2019-12-11T23:12:49.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e94cfe3","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e94cfe3","updated":"2019-12-11T23:12:43.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e431af4","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e431af4","updated":"2019-12-11T23:12:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177df0d218","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177df0d218","updated":"2019-12-11T23:12:33.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a6b45dd","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a6b45dd","updated":"2019-12-11T23:11:37.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a341251","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a341251","updated":"2019-12-11T23:11:34.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a05ca68","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a05ca68","updated":"2019-12-11T23:11:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1779274aec","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1779274aec","updated":"2019-12-11T23:11:19.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778fa29e0","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778fa29e0","updated":"2019-12-11T23:11:14.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778c78893","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778c78893","updated":"2019-12-11T23:11:11.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177898021d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177898021d","updated":"2019-12-11T23:11:08.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","updated":"2019-12-11T23:10:58.000Z"},"relationships":{}},{"id":"10.70122/fk2/xvkpco","type":"dois","attributes":{"doi":"10.70122/fk2/xvkpco","updated":"2019-12-11T23:06:49.000Z"},"relationships":{}},{"id":"10.7966/9h05-8h60","type":"dois","attributes":{"doi":"10.7966/9h05-8h60","updated":"2019-12-11T22:44:00.000Z"},"relationships":{}},{"id":"10.70122/fk2/wmrchl","type":"dois","attributes":{"doi":"10.70122/fk2/wmrchl","updated":"2019-12-11T22:32:39.000Z"},"relationships":{}},{"id":"10.70122/fk2/c7tm9m","type":"dois","attributes":{"doi":"10.70122/fk2/c7tm9m","updated":"2019-12-11T22:25:52.000Z"},"relationships":{}},{"id":"10.70122/fk2/npsc0m","type":"dois","attributes":{"doi":"10.70122/fk2/npsc0m","updated":"2019-12-11T22:18:36.000Z"},"relationships":{}},{"id":"10.70122/fk2/jtwbef","type":"dois","attributes":{"doi":"10.70122/fk2/jtwbef","updated":"2019-12-11T22:18:01.000Z"},"relationships":{}},{"id":"10.70122/fk2/nqm0ls","type":"dois","attributes":{"doi":"10.70122/fk2/nqm0ls","updated":"2019-12-11T22:17:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v3","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v2","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436","updated":"2019-12-11T22:01:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v1","updated":"2019-12-11T22:00:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v2","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v3","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v1","updated":"2019-12-11T21:57:10.000Z"},"relationships":{}},{"id":"10.23706/s9uow052","type":"dois","attributes":{"doi":"10.23706/s9uow052","updated":"2019-12-11T20:52:59.000Z"},"relationships":{}},{"id":"10.33587/vjkf-0a54","type":"dois","attributes":{"doi":"10.33587/vjkf-0a54","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.33587/fz82-py58","type":"dois","attributes":{"doi":"10.33587/fz82-py58","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.1234/shwbfypddn.1","type":"dois","attributes":{"doi":"10.1234/shwbfypddn.1","updated":"2019-12-11T20:31:31.000Z"},"relationships":{}},{"id":"10.0133/47580","type":"dois","attributes":{"doi":"10.0133/47580","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637971","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637971","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/rvbqoz","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/rvbqoz","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.24335/l21321","type":"dois","attributes":{"doi":"10.24335/l21321","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba27d462b80296c95f91","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba27d462b80296c95f91","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.1860","type":"dois","attributes":{"doi":"10.5282/ubm/digi.1860","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.21401/c559b4c8","type":"dois","attributes":{"doi":"10.21401/c559b4c8","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5290/1200156","type":"dois","attributes":{"doi":"10.5290/1200156","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33522/h344-llhv","type":"dois","attributes":{"doi":"10.33522/h344-llhv","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5286/isis.e/isis.e.rb1720482","type":"dois","attributes":{"doi":"10.5286/isis.e/isis.e.rb1720482","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4","updated":"2019-12-11T20:20:29.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/esfsri","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/esfsri","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/t6i6hz","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/t6i6hz","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/kttdny","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/kttdny","updated":"2019-12-11T20:20:27.000Z"},"relationships":{}},{"id":"10.33587/2j2j-pj50","type":"dois","attributes":{"doi":"10.33587/2j2j-pj50","updated":"2019-12-11T20:02:43.000Z"},"relationships":{}},{"id":"10.21367/datacite_go.0047","type":"dois","attributes":{"doi":"10.21367/datacite_go.0047","updated":"2019-12-11T20:02:41.000Z"},"relationships":{}},{"id":"10.15146/5ysn-h463","type":"dois","attributes":{"doi":"10.15146/5ysn-h463","updated":"2019-12-11T20:02:18.000Z"},"relationships":{}},{"id":"10.23706/s9z9xi83","type":"dois","attributes":{"doi":"10.23706/s9z9xi83","updated":"2019-12-11T20:01:59.000Z"},"relationships":{}},{"id":"10.21433/67th-2794","type":"dois","attributes":{"doi":"10.21433/67th-2794","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.17889/e107957v4-10617","type":"dois","attributes":{"doi":"10.17889/e107957v4-10617","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.70122/fk2/7fccwx/gb4clq","type":"dois","attributes":{"doi":"10.70122/fk2/7fccwx/gb4clq","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.15496/publikation-22889","type":"dois","attributes":{"doi":"10.15496/publikation-22889","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.70114/idbdev-6994051_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-6994051_v1","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.33546/03ye-n387","type":"dois","attributes":{"doi":"10.33546/03ye-n387","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.70112/ricgxh","type":"dois","attributes":{"doi":"10.70112/ricgxh","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.15488/123","type":"dois","attributes":{"doi":"10.15488/123","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.21977/k98c-z024","type":"dois","attributes":{"doi":"10.21977/k98c-z024","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33573/fk2/xoyl89/ln8u7b","type":"dois","attributes":{"doi":"10.33573/fk2/xoyl89/ln8u7b","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db3e501ce33e","type":"dois","attributes":{"doi":"10.33535/test_doi_5db3e501ce33e","updated":"2019-12-11T20:01:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","type":"dois","attributes":{"doi":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70118/00001278","type":"dois","attributes":{"doi":"10.70118/00001278","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.33516/jzywzmwm","type":"dois","attributes":{"doi":"10.33516/jzywzmwm","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.00012/uu01-1x572a","type":"dois","attributes":{"doi":"10.00012/uu01-1x572a","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d36a18b4d440","type":"dois","attributes":{"doi":"10.70131/test_doi_5d36a18b4d440","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.hknlst","type":"dois","attributes":{"doi":"10.4124/fairsharing.hknlst","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.23655/f15z-k675","type":"dois","attributes":{"doi":"10.23655/f15z-k675","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.0350/heal.auth.ir.302169","type":"dois","attributes":{"doi":"10.0350/heal.auth.ir.302169","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.18749/dodis-38378","type":"dois","attributes":{"doi":"10.18749/dodis-38378","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-7dcd340d","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-7dcd340d","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.0859/intervals.jh346c","type":"dois","attributes":{"doi":"10.0859/intervals.jh346c","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.14454/1x4x-9056","type":"dois","attributes":{"doi":"10.14454/1x4x-9056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.80056/06070056","type":"dois","attributes":{"doi":"10.80056/06070056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.33563/fk2/cmhz82","type":"dois","attributes":{"doi":"10.33563/fk2/cmhz82","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.24399/sr100","type":"dois","attributes":{"doi":"10.24399/sr100","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.23705/d92h3w9d","type":"dois","attributes":{"doi":"10.23705/d92h3w9d","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.7272/gfp7-wq34","type":"dois","attributes":{"doi":"10.7272/gfp7-wq34","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.21373/1559917260944","type":"dois","attributes":{"doi":"10.21373/1559917260944","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/5.4.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/5.4.4","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.33515/dspace-1","type":"dois","attributes":{"doi":"10.33515/dspace-1","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.70125/fk2/emjdes","type":"dois","attributes":{"doi":"10.70125/fk2/emjdes","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-824-1","type":"dois","attributes":{"doi":"10.5255/ukda-sn-824-1","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.33572/fk2/x37kjb/q80q83","type":"dois","attributes":{"doi":"10.33572/fk2/x37kjb/q80q83","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.17169/refubium-249","type":"dois","attributes":{"doi":"10.17169/refubium-249","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel321","type":"dois","attributes":{"doi":"10.21993/dspace-devel321","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.0180/oparadev-34","type":"dois","attributes":{"doi":"10.0180/oparadev-34","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.23676/3rpf-at23","type":"dois","attributes":{"doi":"10.23676/3rpf-at23","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21383/akbmdy43eu","type":"dois","attributes":{"doi":"10.21383/akbmdy43eu","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24418/gyey-p616","type":"dois","attributes":{"doi":"10.24418/gyey-p616","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.21389/xvsq-c914","type":"dois","attributes":{"doi":"10.21389/xvsq-c914","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.44","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.44","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc3259fca8","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc3259fca8","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.21397/olve-lnhe","type":"dois","attributes":{"doi":"10.21397/olve-lnhe","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.17026/test-rteo-zmf-2kek","type":"dois","attributes":{"doi":"10.17026/test-rteo-zmf-2kek","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.33591/nioz/4sdti3","type":"dois","attributes":{"doi":"10.33591/nioz/4sdti3","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.0174/hkce-ck3d","type":"dois","attributes":{"doi":"10.0174/hkce-ck3d","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.22007/dtu:2971","type":"dois","attributes":{"doi":"10.22007/dtu:2971","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.23721/100/17500","type":"dois","attributes":{"doi":"10.23721/100/17500","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1244796","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1244796","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.33631/rds.23204","type":"dois","attributes":{"doi":"10.33631/rds.23204","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.20375/0000-001a-3341-1","type":"dois","attributes":{"doi":"10.20375/0000-001a-3341-1","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.70117/vats-5s80","type":"dois","attributes":{"doi":"10.70117/vats-5s80","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.11578/dc.20190924.5","type":"dois","attributes":{"doi":"10.11578/dc.20190924.5","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.15140/83ak-tn39","type":"dois","attributes":{"doi":"10.15140/83ak-tn39","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21237/m435-hk40","type":"dois","attributes":{"doi":"10.21237/m435-hk40","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21985/n2-re7n-h087","type":"dois","attributes":{"doi":"10.21985/n2-re7n-h087","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.70018/tzb3-7878","type":"dois","attributes":{"doi":"10.70018/tzb3-7878","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","type":"dois","attributes":{"doi":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_260474","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_260474","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.20408/js3a-h061","type":"dois","attributes":{"doi":"10.20408/js3a-h061","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.0341/nor00581","type":"dois","attributes":{"doi":"10.0341/nor00581","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.7965/s9zw8516","type":"dois","attributes":{"doi":"10.7965/s9zw8516","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.33605/49","type":"dois","attributes":{"doi":"10.33605/49","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.80001/26vg","type":"dois","attributes":{"doi":"10.80001/26vg","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5db8c37f5d1aa","type":"dois","attributes":{"doi":"10.70138/test_doi_5db8c37f5d1aa","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.21395/m32228","type":"dois","attributes":{"doi":"10.21395/m32228","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.70101/pqx2-2d51","type":"dois","attributes":{"doi":"10.70101/pqx2-2d51","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.33577/j4mb-xb10","type":"dois","attributes":{"doi":"10.33577/j4mb-xb10","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.7959/dryad.t1g1jwz0","type":"dois","attributes":{"doi":"10.7959/dryad.t1g1jwz0","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/17756","type":"dois","attributes":{"doi":"10.15482/usda.adc/17756","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","type":"dois","attributes":{"doi":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","type":"dois","attributes":{"doi":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.33581/test2019.2","type":"dois","attributes":{"doi":"10.33581/test2019.2","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.21361/dvs/116682","type":"dois","attributes":{"doi":"10.21361/dvs/116682","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.20405/fk2/4wjsxk/vlavqf","type":"dois","attributes":{"doi":"10.20405/fk2/4wjsxk/vlavqf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.5445/ir/1000109354","type":"dois","attributes":{"doi":"10.5445/ir/1000109354","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.33531/etd/8","type":"dois","attributes":{"doi":"10.33531/etd/8","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.23677/q3-8w-ht-3u-oz","type":"dois","attributes":{"doi":"10.23677/q3-8w-ht-3u-oz","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.4124/0036314","type":"dois","attributes":{"doi":"10.4124/0036314","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.70020/k92b-8r58","type":"dois","attributes":{"doi":"10.70020/k92b-8r58","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21425/qp2v-3w52","type":"dois","attributes":{"doi":"10.21425/qp2v-3w52","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21394/kavt-21a1","type":"dois","attributes":{"doi":"10.21394/kavt-21a1","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.33532/k713-p840","type":"dois","attributes":{"doi":"10.33532/k713-p840","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.70106/tind.65","type":"dois","attributes":{"doi":"10.70106/tind.65","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.15152/geo.485","type":"dois","attributes":{"doi":"10.15152/geo.485","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001029.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001029.v1.0.0","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/pjop4i","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/pjop4i","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.80000/cqso-y3tt","type":"dois","attributes":{"doi":"10.80000/cqso-y3tt","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.23707/b98mwjs5","type":"dois","attributes":{"doi":"10.23707/b98mwjs5","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.7961/d96n0g55","type":"dois","attributes":{"doi":"10.7961/d96n0g55","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-8","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-8","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21337/k4vnmb","type":"dois","attributes":{"doi":"10.21337/k4vnmb","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.22008/fk2/luwxhk/nnt5h3","type":"dois","attributes":{"doi":"10.22008/fk2/luwxhk/nnt5h3","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/soydp7","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/soydp7","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.5074/6640001.v1","type":"dois","attributes":{"doi":"10.5074/6640001.v1","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.80063/fk2/kldsjb","type":"dois","attributes":{"doi":"10.80063/fk2/kldsjb","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33606/4","type":"dois","attributes":{"doi":"10.33606/4","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33548/700101","type":"dois","attributes":{"doi":"10.33548/700101","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d3bfdf017857","type":"dois","attributes":{"doi":"10.33580/test_doi_5d3bfdf017857","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.24410/kaust-96hmn","type":"dois","attributes":{"doi":"10.24410/kaust-96hmn","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.23685/c/13-dataset","type":"dois","attributes":{"doi":"10.23685/c/13-dataset","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/3","type":"dois","attributes":{"doi":"10.7968/20191101.1/3","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.23718/fitbir/17851","type":"dois","attributes":{"doi":"10.23718/fitbir/17851","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.21366/ghent-49hreu","type":"dois","attributes":{"doi":"10.21366/ghent-49hreu","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.22029/mediarep-test/1364","type":"dois","attributes":{"doi":"10.22029/mediarep-test/1364","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.0307/ir-3116","type":"dois","attributes":{"doi":"10.0307/ir-3116","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.80037/1bbq-h574","type":"dois","attributes":{"doi":"10.80037/1bbq-h574","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.2","type":"dois","attributes":{"doi":"10.16904/envidat-test.2","updated":"2019-12-11T20:01:10.000Z"},"relationships":{}},{"id":"10.23658/fk-mze7-em12","type":"dois","attributes":{"doi":"10.23658/fk-mze7-em12","updated":"2019-12-11T20:01:08.000Z"},"relationships":{}},{"id":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","type":"dois","attributes":{"doi":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.18462/iif.sec","type":"dois","attributes":{"doi":"10.18462/iif.sec","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.21232/gswxvgoac","type":"dois","attributes":{"doi":"10.21232/gswxvgoac","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.15124/york_law_journal/1245","type":"dois","attributes":{"doi":"10.15124/york_law_journal/1245","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33540/f2hg-m826","type":"dois","attributes":{"doi":"10.33540/f2hg-m826","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33578/ubsi/288","type":"dois","attributes":{"doi":"10.33578/ubsi/288","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.13139/olcf/1473795","type":"dois","attributes":{"doi":"10.13139/olcf/1473795","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.17591/midle.0.6","type":"dois","attributes":{"doi":"10.17591/midle.0.6","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.33542/sqxs-h277","type":"dois","attributes":{"doi":"10.33542/sqxs-h277","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.7962/d90rnozq","type":"dois","attributes":{"doi":"10.7962/d90rnozq","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.18150/fk2/jwslhi","type":"dois","attributes":{"doi":"10.18150/fk2/jwslhi","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.70124/fk2/b5pmwj/yptyn2","type":"dois","attributes":{"doi":"10.70124/fk2/b5pmwj/yptyn2","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5ceccb7ad737d","type":"dois","attributes":{"doi":"10.24342/test_doi_5ceccb7ad737d","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.7970/48430071367c4a8c811096be180653c1","type":"dois","attributes":{"doi":"10.7970/48430071367c4a8c811096be180653c1","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.5068/gayw-yb05","type":"dois","attributes":{"doi":"10.5068/gayw-yb05","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.11571/rc91-e073","type":"dois","attributes":{"doi":"10.11571/rc91-e073","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.33556/dspace-thraki-4","type":"dois","attributes":{"doi":"10.33556/dspace-thraki-4","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.80058/67gh-9k10","type":"dois","attributes":{"doi":"10.80058/67gh-9k10","updated":"2019-12-11T20:01:01.000Z"},"relationships":{}},{"id":"10.80022/37p7-xr98","type":"dois","attributes":{"doi":"10.80022/37p7-xr98","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c818d9ba7e55","type":"dois","attributes":{"doi":"10.33685/test_doi_5c818d9ba7e55","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.5285/afba710f-dab1-4a63-867b-520177388224","type":"dois","attributes":{"doi":"10.5285/afba710f-dab1-4a63-867b-520177388224","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.22024/test/unikent/01.01.67","type":"dois","attributes":{"doi":"10.22024/test/unikent/01.01.67","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33630/5c6b6fb9cb760","type":"dois","attributes":{"doi":"10.33630/5c6b6fb9cb760","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33505/fh4j-c298","type":"dois","attributes":{"doi":"10.33505/fh4j-c298","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db066bf286f0","type":"dois","attributes":{"doi":"10.33568/test_doi_5db066bf286f0","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.7963/s9d8oo5q","type":"dois","attributes":{"doi":"10.7963/s9d8oo5q","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33528/fyyq-6e28","type":"dois","attributes":{"doi":"10.33528/fyyq-6e28","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.7893/86j2-vk74","type":"dois","attributes":{"doi":"10.7893/86j2-vk74","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d19662638405","type":"dois","attributes":{"doi":"10.70011/test_doi_5d19662638405","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.15480/tor.fdm.tuhh.292","type":"dois","attributes":{"doi":"10.15480/tor.fdm.tuhh.292","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.70031/wk56-pq48","type":"dois","attributes":{"doi":"10.70031/wk56-pq48","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.18465/lcsb-xckeca-ktdoaz","type":"dois","attributes":{"doi":"10.18465/lcsb-xckeca-ktdoaz","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.33574/5","type":"dois","attributes":{"doi":"10.33574/5","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.21398/opus-402","type":"dois","attributes":{"doi":"10.21398/opus-402","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-1","type":"dois","attributes":{"doi":"10.33508/ucrrtest-1","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0","type":"dois","attributes":{"doi":"10.70111/cas.v1i0","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5d650c3ca0464","type":"dois","attributes":{"doi":"10.70030/test_doi_5d650c3ca0464","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33681/test_doi_5c905b68983d9","type":"dois","attributes":{"doi":"10.33681/test_doi_5c905b68983d9","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.7964/b9l79htj","type":"dois","attributes":{"doi":"10.7964/b9l79htj","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.5439/1379421","type":"dois","attributes":{"doi":"10.5439/1379421","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.21410/fk2/gimnjc","type":"dois","attributes":{"doi":"10.21410/fk2/gimnjc","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24427/8gt9-nk59","type":"dois","attributes":{"doi":"10.24427/8gt9-nk59","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.70036/2g6e-wv56","type":"dois","attributes":{"doi":"10.70036/2g6e-wv56","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24373/j282-2tv5","type":"dois","attributes":{"doi":"10.24373/j282-2tv5","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.23650/ghent-l88hbz","type":"dois","attributes":{"doi":"10.23650/ghent-l88hbz","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.70015/opus-3","type":"dois","attributes":{"doi":"10.70015/opus-3","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.80091/0011","type":"dois","attributes":{"doi":"10.80091/0011","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.23693/discussdata:uu-id-123-456","type":"dois","attributes":{"doi":"10.23693/discussdata:uu-id-123-456","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.23719/17153","type":"dois","attributes":{"doi":"10.23719/17153","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.18716/testusb/090219","type":"dois","attributes":{"doi":"10.18716/testusb/090219","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/tjqrbs","type":"dois","attributes":{"doi":"10.80051/myshoulder/tjqrbs","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.33565/butf9o","type":"dois","attributes":{"doi":"10.33565/butf9o","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.21368/test362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test362-u1480g-gra","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5dddd9f5a69a9","type":"dois","attributes":{"doi":"10.70144/test_doi_5dddd9f5a69a9","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","type":"dois","attributes":{"doi":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/7a5/8wxx1","type":"dois","attributes":{"doi":"10.4124/7a5/8wxx1","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.33523/oier6v/cyjxdo","type":"dois","attributes":{"doi":"10.33523/oier6v/cyjxdo","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4092","type":"dois","attributes":{"doi":"10.18725/0722-6691/4092","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.15123/pub.21","type":"dois","attributes":{"doi":"10.15123/pub.21","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545cdwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545cdwm2446","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.71710475","type":"dois","attributes":{"doi":"10.0337/cds/vizier.71710475","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.7969/verba-alpina/c69_v3","type":"dois","attributes":{"doi":"10.7969/verba-alpina/c69_v3","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.13143/asfera-cfa2019-16673","type":"dois","attributes":{"doi":"10.13143/asfera-cfa2019-16673","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.0309/rwstg1k34w","type":"dois","attributes":{"doi":"10.0309/rwstg1k34w","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.15125/bath-00708","type":"dois","attributes":{"doi":"10.15125/bath-00708","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.23688/1086-0g98","type":"dois","attributes":{"doi":"10.23688/1086-0g98","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","type":"dois","attributes":{"doi":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24366/test_doi_5d5649793b5bf","type":"dois","attributes":{"doi":"10.24366/test_doi_5d5649793b5bf","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.70003/bf1v-7819","type":"dois","attributes":{"doi":"10.70003/bf1v-7819","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb001b535af2","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb001b535af2","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.17192/mardata-test/13","type":"dois","attributes":{"doi":"10.17192/mardata-test/13","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c906bfdadf19","type":"dois","attributes":{"doi":"10.33679/test_doi_5c906bfdadf19","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.17879/93179674181","type":"dois","attributes":{"doi":"10.17879/93179674181","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.0179/abcdef","type":"dois","attributes":{"doi":"10.0179/abcdef","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.70005/test_doi_5d02d79420380","type":"dois","attributes":{"doi":"10.70005/test_doi_5d02d79420380","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.11588/29279","type":"dois","attributes":{"doi":"10.11588/29279","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.70012/fzj-data/2kpsdc","type":"dois","attributes":{"doi":"10.70012/fzj-data/2kpsdc","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.33634/13","type":"dois","attributes":{"doi":"10.33634/13","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.17889/e100852v2","type":"dois","attributes":{"doi":"10.17889/e100852v2","updated":"2019-12-11T19:58:35.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001071.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001071.v1.0.0","updated":"2019-12-11T19:45:40.000Z"},"relationships":{}},{"id":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","type":"dois","attributes":{"doi":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","updated":"2019-12-11T19:41:54.000Z"},"relationships":{}},{"id":"10.20371/researchdatatest.cab.unipd.it.00000303","type":"dois","attributes":{"doi":"10.20371/researchdatatest.cab.unipd.it.00000303","updated":"2019-12-11T19:32:29.000Z"},"relationships":{}},{"id":"10.13144/lineas1000","type":"dois","attributes":{"doi":"10.13144/lineas1000","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.7958/dryad.t76hdrd0","type":"dois","attributes":{"doi":"10.7958/dryad.t76hdrd0","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","type":"dois","attributes":{"doi":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.70027/gybt-wr66","type":"dois","attributes":{"doi":"10.70027/gybt-wr66","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80048/em0y-k025","type":"dois","attributes":{"doi":"10.80048/em0y-k025","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80016/dvn/qt5cjf","type":"dois","attributes":{"doi":"10.80016/dvn/qt5cjf","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.70044/sn/1a_2007","type":"dois","attributes":{"doi":"10.70044/sn/1a_2007","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.80099/pub.00001264","type":"dois","attributes":{"doi":"10.80099/pub.00001264","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.21949/17246","type":"dois","attributes":{"doi":"10.21949/17246","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c92d321c8822","type":"dois","attributes":{"doi":"10.33679/test_doi_5c92d321c8822","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.7947/dhpb-3346","type":"dois","attributes":{"doi":"10.7947/dhpb-3346","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.17170/ojs-tjub-63","type":"dois","attributes":{"doi":"10.17170/ojs-tjub-63","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.70008/test_doi_5dc1e8d344c34","type":"dois","attributes":{"doi":"10.70008/test_doi_5dc1e8d344c34","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.22001/ag.econ.45747","type":"dois","attributes":{"doi":"10.22001/ag.econ.45747","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.80025/cnp1010743","type":"dois","attributes":{"doi":"10.80025/cnp1010743","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.70014/opus-297","type":"dois","attributes":{"doi":"10.70014/opus-297","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.21339/gpr2-4d56","type":"dois","attributes":{"doi":"10.21339/gpr2-4d56","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.24378/exe.7","type":"dois","attributes":{"doi":"10.24378/exe.7","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.4124/r9k643b116b","type":"dois","attributes":{"doi":"10.4124/r9k643b116b","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.5258/soton/1560","type":"dois","attributes":{"doi":"10.5258/soton/1560","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.70139/4s96-j174","type":"dois","attributes":{"doi":"10.70139/4s96-j174","updated":"2019-12-11T19:32:21.000Z"},"relationships":{}},{"id":"10.14288/1.0043659","type":"dois","attributes":{"doi":"10.14288/1.0043659","updated":"2019-12-11T19:32:04.000Z"},"relationships":{}},{"id":"10.33632/5","type":"dois","attributes":{"doi":"10.33632/5","updated":"2019-12-11T19:32:03.000Z"},"relationships":{}},{"id":"10.33633/111","type":"dois","attributes":{"doi":"10.33633/111","updated":"2019-12-11T19:32:01.000Z"},"relationships":{}},{"id":"10.33509/wy8n-g458","type":"dois","attributes":{"doi":"10.33509/wy8n-g458","updated":"2019-12-11T19:31:55.000Z"},"relationships":{}},{"id":"10.23651/ghent-t1mx5b","type":"dois","attributes":{"doi":"10.23651/ghent-t1mx5b","updated":"2019-12-11T19:31:54.000Z"},"relationships":{}},{"id":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","type":"dois","attributes":{"doi":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","updated":"2019-12-11T19:31:21.000Z"},"relationships":{}},{"id":"10.11585/demo.5","type":"dois","attributes":{"doi":"10.11585/demo.5","updated":"2019-12-11T19:30:47.000Z"},"relationships":{}},{"id":"10.3933/2y89-4g52","type":"dois","attributes":{"doi":"10.3933/2y89-4g52","updated":"2019-12-11T19:30:44.000Z"},"relationships":{}},{"id":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","type":"dois","attributes":{"doi":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","updated":"2019-12-11T19:29:48.000Z"},"relationships":{}},{"id":"10.11571/sh3n-yq58","type":"dois","attributes":{"doi":"10.11571/sh3n-yq58","updated":"2019-12-11T19:12:05.000Z"},"relationships":{}},{"id":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","type":"dois","attributes":{"doi":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","updated":"2019-12-11T19:11:37.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001067.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001067.v1.0.0","updated":"2019-12-11T19:07:54.000Z"},"relationships":{}},{"id":"10.5438/6brg-2m37","type":"dois","attributes":{"doi":"10.5438/6brg-2m37","updated":"2019-12-11T19:02:46.000Z"},"relationships":{}},{"id":"10.25355/hi-67","type":"dois","attributes":{"doi":"10.25355/hi-67","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.15493/a","type":"dois","attributes":{"doi":"10.15493/a","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.70102/fk2osf.io/hu3qn","type":"dois","attributes":{"doi":"10.70102/fk2osf.io/hu3qn","updated":"2019-12-11T19:02:41.000Z"},"relationships":{}},{"id":"10.24365/interesting_pub","type":"dois","attributes":{"doi":"10.24365/interesting_pub","updated":"2019-12-11T19:02:40.000Z"},"relationships":{}},{"id":"10.70103/asxk-6k85","type":"dois","attributes":{"doi":"10.70103/asxk-6k85","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.25518/1782-2041.1004","type":"dois","attributes":{"doi":"10.25518/1782-2041.1004","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7798/jgi/1374074","type":"dois","attributes":{"doi":"10.7798/jgi/1374074","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","type":"dois","attributes":{"doi":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7967/qqdprd","type":"dois","attributes":{"doi":"10.7967/qqdprd","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.80028/a22e-dh58","type":"dois","attributes":{"doi":"10.80028/a22e-dh58","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.17038/1473649","type":"dois","attributes":{"doi":"10.17038/1473649","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.20406/syvh-3y71","type":"dois","attributes":{"doi":"10.20406/syvh-3y71","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.33558/abcdef","type":"dois","attributes":{"doi":"10.33558/abcdef","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.26039/yvcm-2209","type":"dois","attributes":{"doi":"10.26039/yvcm-2209","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.80034/dirisaxyz12092019","type":"dois","attributes":{"doi":"10.80034/dirisaxyz12092019","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33543/nrwa-2462","type":"dois","attributes":{"doi":"10.33543/nrwa-2462","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.15154/17165","type":"dois","attributes":{"doi":"10.15154/17165","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33550/wk46-zz76","type":"dois","attributes":{"doi":"10.33550/wk46-zz76","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.21399/jx74-cm45","type":"dois","attributes":{"doi":"10.21399/jx74-cm45","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.80047/y1kg-dh14","type":"dois","attributes":{"doi":"10.80047/y1kg-dh14","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.15156/1xqt-rz35","type":"dois","attributes":{"doi":"10.15156/1xqt-rz35","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.25620/iciber.issn.1476-4687","type":"dois","attributes":{"doi":"10.25620/iciber.issn.1476-4687","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.13141/foo","type":"dois","attributes":{"doi":"10.13141/foo","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.2312/17fs-0s58","type":"dois","attributes":{"doi":"10.2312/17fs-0s58","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80024/w1gn-pfvq-0x0v","type":"dois","attributes":{"doi":"10.80024/w1gn-pfvq-0x0v","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.13154/pq5s-ca92","type":"dois","attributes":{"doi":"10.13154/pq5s-ca92","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80023/ds2-t7es-qk98","type":"dois","attributes":{"doi":"10.80023/ds2-t7es-qk98","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.5165/hawk-hhg/418","type":"dois","attributes":{"doi":"10.5165/hawk-hhg/418","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.70037/opus-65","type":"dois","attributes":{"doi":"10.70037/opus-65","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.7954/dbt.1","type":"dois","attributes":{"doi":"10.7954/dbt.1","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.33551/mitofit:190001","type":"dois","attributes":{"doi":"10.33551/mitofit:190001","updated":"2019-12-11T19:02:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637021.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637021.v1","updated":"2019-12-11T19:02:29.000Z"},"relationships":{}},{"id":"10.0322/bldev.app.47","type":"dois","attributes":{"doi":"10.0322/bldev.app.47","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/ig02ri","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/ig02ri","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.21367/cool_conf.0037","type":"dois","attributes":{"doi":"10.21367/cool_conf.0037","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.143","type":"dois","attributes":{"doi":"10.5282/ubm/digi.143","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.33587/5ynq-hv36","type":"dois","attributes":{"doi":"10.33587/5ynq-hv36","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.24335/l21279","type":"dois","attributes":{"doi":"10.24335/l21279","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.15146/t9jn-9q27","type":"dois","attributes":{"doi":"10.15146/t9jn-9q27","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.21401/23542694","type":"dois","attributes":{"doi":"10.21401/23542694","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba29d462b80296c96448","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba29d462b80296c96448","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.70114/idbdev-2732257_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-2732257_v1","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.23706/s9sf4i77","type":"dois","attributes":{"doi":"10.23706/s9sf4i77","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.5290/1200146","type":"dois","attributes":{"doi":"10.5290/1200146","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.17889/e110377","type":"dois","attributes":{"doi":"10.17889/e110377","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.33546/vc7c-ea14","type":"dois","attributes":{"doi":"10.33546/vc7c-ea14","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.14278/rodaretest.4","type":"dois","attributes":{"doi":"10.14278/rodaretest.4","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.70122/fk2/t2ytti/9gxzcg","type":"dois","attributes":{"doi":"10.70122/fk2/t2ytti/9gxzcg","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.21433/m88v-qs57","type":"dois","attributes":{"doi":"10.21433/m88v-qs57","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.33563/fk2/9eqir4/uwvpr1","type":"dois","attributes":{"doi":"10.33563/fk2/9eqir4/uwvpr1","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.15496/publikation-22848","type":"dois","attributes":{"doi":"10.15496/publikation-22848","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","type":"dois","attributes":{"doi":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.21373/dl.bsvekz","type":"dois","attributes":{"doi":"10.21373/dl.bsvekz","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.23676/wnyj-v171","type":"dois","attributes":{"doi":"10.23676/wnyj-v171","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/p2.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/p2.4","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.70112/sfbvny","type":"dois","attributes":{"doi":"10.70112/sfbvny","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-746-2","type":"dois","attributes":{"doi":"10.5255/ukda-sn-746-2","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel583","type":"dois","attributes":{"doi":"10.21993/dspace-devel583","updated":"2019-12-11T19:02:18.000Z"},"relationships":{}},{"id":"10.22007/dtu:2796","type":"dois","attributes":{"doi":"10.22007/dtu:2796","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21985/n2-2s7c-fj92","type":"dois","attributes":{"doi":"10.21985/n2-2s7c-fj92","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21383/ku9vzu9hfy","type":"dois","attributes":{"doi":"10.21383/ku9vzu9hfy","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.23655/1b21-kq93","type":"dois","attributes":{"doi":"10.23655/1b21-kq93","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.11578/1474171","type":"dois","attributes":{"doi":"10.11578/1474171","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.21977/fver-hf34","type":"dois","attributes":{"doi":"10.21977/fver-hf34","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d6899fa6d3fb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d6899fa6d3fb","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.17026/test-funt-zyn-n3pu","type":"dois","attributes":{"doi":"10.17026/test-funt-zyn-n3pu","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d54caf44fc3b","type":"dois","attributes":{"doi":"10.24428/test_doi_5d54caf44fc3b","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.33573/fk2/oskhgw/mytdlt","type":"dois","attributes":{"doi":"10.33573/fk2/oskhgw/mytdlt","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-9cf81d80","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-9cf81d80","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33516/1f5d3qsz","type":"dois","attributes":{"doi":"10.33516/1f5d3qsz","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db00b9842361","type":"dois","attributes":{"doi":"10.33535/test_doi_5db00b9842361","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.70002/tpxq-mx56","type":"dois","attributes":{"doi":"10.70002/tpxq-mx56","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.cc1rz574","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.cc1rz574","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.7272/k4dt-ce92","type":"dois","attributes":{"doi":"10.7272/k4dt-ce92","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23721/100/17321","type":"dois","attributes":{"doi":"10.23721/100/17321","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.21237/2g7n-8r32","type":"dois","attributes":{"doi":"10.21237/2g7n-8r32","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.kyykuh","type":"dois","attributes":{"doi":"10.4124/fairsharing.kyykuh","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23705/d9h1r6kt","type":"dois","attributes":{"doi":"10.23705/d9h1r6kt","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.24399/sr575","type":"dois","attributes":{"doi":"10.24399/sr575","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.70117/ktsn-9708","type":"dois","attributes":{"doi":"10.70117/ktsn-9708","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.33631/rds.26047","type":"dois","attributes":{"doi":"10.33631/rds.26047","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.7965/d9qp0tdh","type":"dois","attributes":{"doi":"10.7965/d9qp0tdh","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.80056/13030035","type":"dois","attributes":{"doi":"10.80056/13030035","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.18749/dodis-9931","type":"dois","attributes":{"doi":"10.18749/dodis-9931","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.24418/1t8x-sf06","type":"dois","attributes":{"doi":"10.24418/1t8x-sf06","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.70118/00001213","type":"dois","attributes":{"doi":"10.70118/00001213","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","type":"dois","attributes":{"doi":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.70018/1111","type":"dois","attributes":{"doi":"10.70018/1111","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.0341/nor00706","type":"dois","attributes":{"doi":"10.0341/nor00706","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0859/intervals.fsoifx.1","type":"dois","attributes":{"doi":"10.0859/intervals.fsoifx.1","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.00012/uu01-unlqf7","type":"dois","attributes":{"doi":"10.00012/uu01-unlqf7","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0350/bxmc-jf1ddaraaa","type":"dois","attributes":{"doi":"10.0350/bxmc-jf1ddaraaa","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5cafe8a9bce50","type":"dois","attributes":{"doi":"10.70138/test_doi_5cafe8a9bce50","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.20408/fr1z-cs60","type":"dois","attributes":{"doi":"10.20408/fr1z-cs60","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.33572/fk2/vhlpu5/7beexd","type":"dois","attributes":{"doi":"10.33572/fk2/vhlpu5/7beexd","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.80001/vap","type":"dois","attributes":{"doi":"10.80001/vap","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.33585/fk2-1vp6-y446","type":"dois","attributes":{"doi":"10.33585/fk2-1vp6-y446","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/19542","type":"dois","attributes":{"doi":"10.15482/usda.adc/19542","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.70125/fk2/2d3u1r","type":"dois","attributes":{"doi":"10.70125/fk2/2d3u1r","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.17169/fudocs_document_000000020321","type":"dois","attributes":{"doi":"10.17169/fudocs_document_000000020321","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.33532/z373-8033","type":"dois","attributes":{"doi":"10.33532/z373-8033","updated":"2019-12-11T19:02:04.000Z"},"relationships":{}},{"id":"10.4124/0083351","type":"dois","attributes":{"doi":"10.4124/0083351","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","type":"dois","attributes":{"doi":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1291638","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1291638","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21389/2c9c-av14","type":"dois","attributes":{"doi":"10.21389/2c9c-av14","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21425/hswv-gt27","type":"dois","attributes":{"doi":"10.21425/hswv-gt27","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.15140/5e2n-1d36","type":"dois","attributes":{"doi":"10.15140/5e2n-1d36","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.21394/5tmk-0ehb","type":"dois","attributes":{"doi":"10.21394/5tmk-0ehb","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.33581/fk2/ctbeho/8ldaiv","type":"dois","attributes":{"doi":"10.33581/fk2/ctbeho/8ldaiv","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.70048/mvgr-ra97","type":"dois","attributes":{"doi":"10.70048/mvgr-ra97","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00009107","type":"dois","attributes":{"doi":"10.0253/tuprints-00009107","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_261007","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_261007","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.33591/nioz/7eyirt/cv297x","type":"dois","attributes":{"doi":"10.33591/nioz/7eyirt/cv297x","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.17894/fk2/kkebfa/gaepsg","type":"dois","attributes":{"doi":"10.17894/fk2/kkebfa/gaepsg","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.70009/test_doi_5d02f8a86693a","type":"dois","attributes":{"doi":"10.70009/test_doi_5d02f8a86693a","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.33577/rmwz-zv08","type":"dois","attributes":{"doi":"10.33577/rmwz-zv08","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.15770/darus-475/1","type":"dois","attributes":{"doi":"10.15770/darus-475/1","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.25560/1271","type":"dois","attributes":{"doi":"10.25560/1271","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.21395/m3-800p-9g35","type":"dois","attributes":{"doi":"10.21395/m3-800p-9g35","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.4124/rdm-dev.liv.ac.uk/400","type":"dois","attributes":{"doi":"10.4124/rdm-dev.liv.ac.uk/400","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.7959/dryad.w0vt4bf0","type":"dois","attributes":{"doi":"10.7959/dryad.w0vt4bf0","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0247/fordatistest/14","type":"dois","attributes":{"doi":"10.0247/fordatistest/14","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.33562/fk2/thxdre/pn3lox","type":"dois","attributes":{"doi":"10.33562/fk2/thxdre/pn3lox","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0260/co.5119570.v1","type":"dois","attributes":{"doi":"10.0260/co.5119570.v1","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.7949/0028352","type":"dois","attributes":{"doi":"10.7949/0028352","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.20405/fk2/fkcwyo","type":"dois","attributes":{"doi":"10.20405/fk2/fkcwyo","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21978/040z-ka37","type":"dois","attributes":{"doi":"10.21978/040z-ka37","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21946/5dbc0221223ba74492ll","type":"dois","attributes":{"doi":"10.21946/5dbc0221223ba74492ll","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.33531/etd/28","type":"dois","attributes":{"doi":"10.33531/etd/28","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.70106/tind.59","type":"dois","attributes":{"doi":"10.70106/tind.59","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.21361/dvs/116677","type":"dois","attributes":{"doi":"10.21361/dvs/116677","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.22009/neu2105191","type":"dois","attributes":{"doi":"10.22009/neu2105191","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.23733/d9f54qcw","type":"dois","attributes":{"doi":"10.23733/d9f54qcw","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.7291/j3j6-yr13","type":"dois","attributes":{"doi":"10.7291/j3j6-yr13","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.70146/rwjiwl/pddqsx","type":"dois","attributes":{"doi":"10.70146/rwjiwl/pddqsx","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1302","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1302","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.80017/jqwqyr","type":"dois","attributes":{"doi":"10.80017/jqwqyr","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70116/26ba-tk12","type":"dois","attributes":{"doi":"10.70116/26ba-tk12","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.23707/b94o6m5m","type":"dois","attributes":{"doi":"10.23707/b94o6m5m","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70101/3pmb-b6qb","type":"dois","attributes":{"doi":"10.70101/3pmb-b6qb","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.18147/smn.2019/video:360","type":"dois","attributes":{"doi":"10.18147/smn.2019/video:360","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70043/xrba-gn28","type":"dois","attributes":{"doi":"10.70043/xrba-gn28","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","type":"dois","attributes":{"doi":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.21337/hsceow","type":"dois","attributes":{"doi":"10.21337/hsceow","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.23708/ucf51c","type":"dois","attributes":{"doi":"10.23708/ucf51c","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.33536/fk2/yn1wxg","type":"dois","attributes":{"doi":"10.33536/fk2/yn1wxg","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23687/fk2/6boy27/3baipx","type":"dois","attributes":{"doi":"10.23687/fk2/6boy27/3baipx","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23672/zwar.za283","type":"dois","attributes":{"doi":"10.23672/zwar.za283","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.70126/f148-fz79","type":"dois","attributes":{"doi":"10.70126/f148-fz79","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.5077/fje4-mc53","type":"dois","attributes":{"doi":"10.5077/fje4-mc53","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.18711/qpn3rhcn","type":"dois","attributes":{"doi":"10.18711/qpn3rhcn","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.24375/16-qqfr","type":"dois","attributes":{"doi":"10.24375/16-qqfr","updated":"2019-12-11T19:01:47.000Z"},"relationships":{}},{"id":"10.5060/pxv6-1s23","type":"dois","attributes":{"doi":"10.5060/pxv6-1s23","updated":"2019-12-11T19:01:46.000Z"},"relationships":{}},{"id":"10.23704/d9jx8sfg","type":"dois","attributes":{"doi":"10.23704/d9jx8sfg","updated":"2019-12-11T19:01:45.000Z"},"relationships":{}},{"id":"10.15152/geo.487","type":"dois","attributes":{"doi":"10.15152/geo.487","updated":"2019-12-11T19:01:44.000Z"},"relationships":{}},{"id":"10.23677/50mn-nij8","type":"dois","attributes":{"doi":"10.23677/50mn-nij8","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70115/dysy-wg83","type":"dois","attributes":{"doi":"10.70115/dysy-wg83","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70109/1153992inistb","type":"dois","attributes":{"doi":"10.70109/1153992inistb","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.5525/gla.thesis.74269","type":"dois","attributes":{"doi":"10.5525/gla.thesis.74269","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.7961/l9mpw2fm","type":"dois","attributes":{"doi":"10.7961/l9mpw2fm","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001033.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001033.v1.0.0","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.80000/vunn-on5y","type":"dois","attributes":{"doi":"10.80000/vunn-on5y","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.17639/mbjm-v107","type":"dois","attributes":{"doi":"10.17639/mbjm-v107","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.21362/sshade","type":"dois","attributes":{"doi":"10.21362/sshade","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.5074/6610391.v1","type":"dois","attributes":{"doi":"10.5074/6610391.v1","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.33606/192","type":"dois","attributes":{"doi":"10.33606/192","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-12","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-12","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/o2b5rv","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/o2b5rv","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/fkwuer","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/fkwuer","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.80062/client-test-fsc1218.2","type":"dois","attributes":{"doi":"10.80062/client-test-fsc1218.2","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.22029/dspace/1050","type":"dois","attributes":{"doi":"10.22029/dspace/1050","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33548/1234569","type":"dois","attributes":{"doi":"10.33548/1234569","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.24410/kaust-0wgzf","type":"dois","attributes":{"doi":"10.24410/kaust-0wgzf","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d35298aa2841","type":"dois","attributes":{"doi":"10.33580/test_doi_5d35298aa2841","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23685/c/9-dataset","type":"dois","attributes":{"doi":"10.23685/c/9-dataset","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/9","type":"dois","attributes":{"doi":"10.7968/20191101.1/9","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23658/fk-6x4v-wm78","type":"dois","attributes":{"doi":"10.23658/fk-6x4v-wm78","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.0307/ir-3115","type":"dois","attributes":{"doi":"10.0307/ir-3115","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.70124/fk2/ztifvh/ctx8rm","type":"dois","attributes":{"doi":"10.70124/fk2/ztifvh/ctx8rm","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.21366/ghent-7km8a4","type":"dois","attributes":{"doi":"10.21366/ghent-7km8a4","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.80037/r1x0-y268","type":"dois","attributes":{"doi":"10.80037/r1x0-y268","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","type":"dois","attributes":{"doi":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.4","type":"dois","attributes":{"doi":"10.16904/envidat-test.4","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.13139/olcf/1468200","type":"dois","attributes":{"doi":"10.13139/olcf/1468200","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33540/as74-1q49","type":"dois","attributes":{"doi":"10.33540/as74-1q49","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33578/ubsi/131","type":"dois","attributes":{"doi":"10.33578/ubsi/131","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.18462/iif.kdjkjdke","type":"dois","attributes":{"doi":"10.18462/iif.kdjkjdke","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.7962/d9l79htj","type":"dois","attributes":{"doi":"10.7962/d9l79htj","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.22024/dev/unikent/01.02.248","type":"dois","attributes":{"doi":"10.22024/dev/unikent/01.02.248","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.80058/fk2/sskvtt/kw0c0z","type":"dois","attributes":{"doi":"10.80058/fk2/sskvtt/kw0c0z","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.7893/akpy-7128","type":"dois","attributes":{"doi":"10.7893/akpy-7128","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.15480/882.2360","type":"dois","attributes":{"doi":"10.15480/882.2360","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c9061ca674d5","type":"dois","attributes":{"doi":"10.33685/test_doi_5c9061ca674d5","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.33505/gc4x-tm21","type":"dois","attributes":{"doi":"10.33505/gc4x-tm21","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.70031/fkcp-ph05","type":"dois","attributes":{"doi":"10.70031/fkcp-ph05","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.80022/h839-4t44","type":"dois","attributes":{"doi":"10.80022/h839-4t44","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.11571/6pv4-v575","type":"dois","attributes":{"doi":"10.11571/6pv4-v575","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.33528/m74j-db88","type":"dois","attributes":{"doi":"10.33528/m74j-db88","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.7963/s9xk9dih","type":"dois","attributes":{"doi":"10.7963/s9xk9dih","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.5068/htnr-8c54","type":"dois","attributes":{"doi":"10.5068/htnr-8c54","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.0855/495","type":"dois","attributes":{"doi":"10.0855/495","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5cee087b566b4","type":"dois","attributes":{"doi":"10.24342/test_doi_5cee087b566b4","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.7970/ec280110fed04a38baa6dfadc98f382f","type":"dois","attributes":{"doi":"10.7970/ec280110fed04a38baa6dfadc98f382f","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","type":"dois","attributes":{"doi":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db161e2b9be2","type":"dois","attributes":{"doi":"10.33568/test_doi_5db161e2b9be2","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.21398/opus-1203","type":"dois","attributes":{"doi":"10.21398/opus-1203","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.33574/6","type":"dois","attributes":{"doi":"10.33574/6","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.24427/fjsc-kw78","type":"dois","attributes":{"doi":"10.24427/fjsc-kw78","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d195f384658c","type":"dois","attributes":{"doi":"10.70011/test_doi_5d195f384658c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5db8b9df0f68c","type":"dois","attributes":{"doi":"10.70030/test_doi_5db8b9df0f68c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0.2","type":"dois","attributes":{"doi":"10.70111/cas.v1i0.2","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.7964/b9aei6cd","type":"dois","attributes":{"doi":"10.7964/b9aei6cd","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-7","type":"dois","attributes":{"doi":"10.33508/ucrrtest-7","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.5439/1379433","type":"dois","attributes":{"doi":"10.5439/1379433","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.21410/testqual/vp88-jd46","type":"dois","attributes":{"doi":"10.21410/testqual/vp88-jd46","updated":"2019-12-11T19:01:25.000Z"},"relationships":{}},{"id":"10.33565/fk2/qknsgq","type":"dois","attributes":{"doi":"10.33565/fk2/qknsgq","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70015/opus-867","type":"dois","attributes":{"doi":"10.70015/opus-867","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5cad8a7c5b587","type":"dois","attributes":{"doi":"10.70144/test_doi_5cad8a7c5b587","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.23693/textgrid:sshq.0","type":"dois","attributes":{"doi":"10.23693/textgrid:sshq.0","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4088","type":"dois","attributes":{"doi":"10.18725/0722-6691/4088","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/merr7f","type":"dois","attributes":{"doi":"10.80051/myshoulder/merr7f","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.23719/17160","type":"dois","attributes":{"doi":"10.23719/17160","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.15123/pub.20","type":"dois","attributes":{"doi":"10.15123/pub.20","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.18716/testusb/verteidigung_masterarbeit_niemitz","type":"dois","attributes":{"doi":"10.18716/testusb/verteidigung_masterarbeit_niemitz","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.21411/cbm.a.b2c2dbe2","type":"dois","attributes":{"doi":"10.21411/cbm.a.b2c2dbe2","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.13143/6d4k-8n87","type":"dois","attributes":{"doi":"10.13143/6d4k-8n87","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.4124/7a5/8qy56","type":"dois","attributes":{"doi":"10.4124/7a5/8qy56","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.102036","type":"dois","attributes":{"doi":"10.0337/cds/vizier.102036","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.21368/test2362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test2362-u1480g-gra","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545dwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545dwm2446","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c90690f35811","type":"dois","attributes":{"doi":"10.33679/test_doi_5c90690f35811","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb00092c3831","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb00092c3831","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.70003/aridhia-blog-001","type":"dois","attributes":{"doi":"10.70003/aridhia-blog-001","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.33634/14","type":"dois","attributes":{"doi":"10.33634/14","updated":"2019-12-11T19:01:15.000Z"},"relationships":{}},{"id":"10.80016/dvn/xgmqdg","type":"dois","attributes":{"doi":"10.80016/dvn/xgmqdg","updated":"2019-12-11T19:01:13.000Z"},"relationships":{}},{"id":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","type":"dois","attributes":{"doi":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","updated":"2019-12-11T19:01:12.000Z"},"relationships":{}},{"id":"10.7947/m30x-pa17","type":"dois","attributes":{"doi":"10.7947/m30x-pa17","updated":"2019-12-11T19:01:11.000Z"},"relationships":{}},{"id":"10.70014/opus-293","type":"dois","attributes":{"doi":"10.70014/opus-293","updated":"2019-12-11T19:01:09.000Z"},"relationships":{}},{"id":"10.1234/m7jfnz69kb","type":"dois","attributes":{"doi":"10.1234/m7jfnz69kb","updated":"2019-12-11T18:30:58.000Z"},"relationships":{}},{"id":"10.5256/f1000research.79265.d245771","type":"dois","attributes":{"doi":"10.5256/f1000research.79265.d245771","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}},{"id":"10.4124/ccnlgrf","type":"dois","attributes":{"doi":"10.4124/ccnlgrf","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NQFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjURZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY1IWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NTFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjVBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NQFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjURZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY1IWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NTFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjVBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
91
- http_version:
92
- recorded_at: Thu, 12 Dec 2019 09:06:43 GMT
94
+ string: '{"data":[{"id":"10.25601/2f56-s909","type":"dois","attributes":{"doi":"10.25601/2f56-s909","updated":"2020-10-24T10:39:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6710384.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6710384.v1","updated":"2020-10-24T03:46:49.000Z"},"relationships":{}},{"id":"10.5438/0fka-h318","type":"dois","attributes":{"doi":"10.5438/0fka-h318","updated":"2020-10-24T03:33:42.000Z"},"relationships":{}},{"id":"10.5438/rvtc-mv28","type":"dois","attributes":{"doi":"10.5438/rvtc-mv28","updated":"2020-10-24T03:30:08.000Z"},"relationships":{}},{"id":"10.80274/cemz-d451","type":"dois","attributes":{"doi":"10.80274/cemz-d451","updated":"2020-10-23T15:32:07.000Z"},"relationships":{}},{"id":"10.24413/n2j2-j175","type":"dois","attributes":{"doi":"10.24413/n2j2-j175","updated":"2020-10-23T15:07:27.000Z"},"relationships":{}},{"id":"10.24413/vzvc-6483","type":"dois","attributes":{"doi":"10.24413/vzvc-6483","updated":"2020-10-23T15:06:47.000Z"},"relationships":{}},{"id":"10.5438/ja0t-9w07","type":"dois","attributes":{"doi":"10.5438/ja0t-9w07","updated":"2020-10-23T14:39:07.000Z"},"relationships":{}},{"id":"10.24413/xzga-x636","type":"dois","attributes":{"doi":"10.24413/xzga-x636","updated":"2020-10-22T11:05:38.000Z"},"relationships":{}},{"id":"10.24413/xzga-x636","type":"dois","attributes":{"doi":"10.24413/xzga-x636","updated":"2020-10-22T11:05:38.000Z"},"relationships":{}},{"id":"10.6095/ww3q-xd68","type":"dois","attributes":{"doi":"10.6095/ww3q-xd68","updated":"2020-10-19T09:28:20.000Z"},"relationships":{}},{"id":"10.5438/t4jb-b450","type":"dois","attributes":{"doi":"10.5438/t4jb-b450","updated":"2020-10-12T09:49:00.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5s17n6h","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5s17n6h","updated":"2020-10-11T12:55:08.000Z"},"relationships":{}},{"id":"10.4124/ycrk-qv65","type":"dois","attributes":{"doi":"10.4124/ycrk-qv65","updated":"2020-10-09T12:52:13.000Z"},"relationships":{}},{"id":"10.0330/4exg-sv49","type":"dois","attributes":{"doi":"10.0330/4exg-sv49","updated":"2020-10-09T12:51:16.000Z"},"relationships":{}},{"id":"10.0330/vzbs-g724","type":"dois","attributes":{"doi":"10.0330/vzbs-g724","updated":"2020-10-09T12:50:41.000Z"},"relationships":{}},{"id":"10.0330/s0cz-f448","type":"dois","attributes":{"doi":"10.0330/s0cz-f448","updated":"2020-10-09T12:22:59.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5s17n6","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5s17n6","updated":"2020-10-02T12:48:53.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5s176","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5s176","updated":"2020-10-02T12:47:25.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5s17","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5s17","updated":"2020-10-02T12:46:25.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5s7","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5s7","updated":"2020-10-02T12:45:06.000Z"},"relationships":{}},{"id":"10.70001/dl.dvcddwot5","type":"dois","attributes":{"doi":"10.70001/dl.dvcddwot5","updated":"2020-10-02T12:41:42.000Z"},"relationships":{}},{"id":"10.80225/da52-7919","type":"dois","attributes":{"doi":"10.80225/da52-7919","updated":"2020-09-29T17:01:48.000Z"},"relationships":{}},{"id":"10.70048/13052001","type":"dois","attributes":{"doi":"10.70048/13052001","updated":"2020-09-28T07:50:39.000Z"},"relationships":{}},{"id":"10.70048/ds-nemacric","type":"dois","attributes":{"doi":"10.70048/ds-nemacric","updated":"2020-09-28T07:50:39.000Z"},"relationships":{}},{"id":"10.80067/jonasmaclocal.3","type":"dois","attributes":{"doi":"10.80067/jonasmaclocal.3","updated":"2020-09-28T07:50:38.000Z"},"relationships":{}},{"id":"10.70048/0htz-vv97","type":"dois","attributes":{"doi":"10.70048/0htz-vv97","updated":"2020-09-28T07:50:38.000Z"},"relationships":{}},{"id":"10.70048/a3le-xcdv","type":"dois","attributes":{"doi":"10.70048/a3le-xcdv","updated":"2020-09-28T07:50:38.000Z"},"relationships":{}},{"id":"10.70048/asj8-es02","type":"dois","attributes":{"doi":"10.70048/asj8-es02","updated":"2020-09-28T07:50:38.000Z"},"relationships":{}},{"id":"10.80067/jonasmaclocal.2","type":"dois","attributes":{"doi":"10.80067/jonasmaclocal.2","updated":"2020-09-28T07:50:37.000Z"},"relationships":{}},{"id":"10.80067/kristofmaclocal.3","type":"dois","attributes":{"doi":"10.80067/kristofmaclocal.3","updated":"2020-09-28T07:50:37.000Z"},"relationships":{}},{"id":"10.70048/j942-c918","type":"dois","attributes":{"doi":"10.70048/j942-c918","updated":"2020-09-28T07:50:37.000Z"},"relationships":{}},{"id":"10.70048/yk1f-8t12","type":"dois","attributes":{"doi":"10.70048/yk1f-8t12","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.70048/8zxt-9y62","type":"dois","attributes":{"doi":"10.70048/8zxt-9y62","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.70048/f95g-2422","type":"dois","attributes":{"doi":"10.70048/f95g-2422","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.70048/ds-nemacric2","type":"dois","attributes":{"doi":"10.70048/ds-nemacric2","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.70048/0wqy-qf28","type":"dois","attributes":{"doi":"10.70048/0wqy-qf28","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.70048/kp6qyr","type":"dois","attributes":{"doi":"10.70048/kp6qyr","updated":"2020-09-28T07:50:36.000Z"},"relationships":{}},{"id":"10.0307/ir-3116","type":"dois","attributes":{"doi":"10.0307/ir-3116","updated":"2020-09-28T07:50:35.000Z"},"relationships":{}},{"id":"10.70048/n3ky-vc13","type":"dois","attributes":{"doi":"10.70048/n3ky-vc13","updated":"2020-09-28T07:50:35.000Z"},"relationships":{}},{"id":"10.70048/2473-vw67","type":"dois","attributes":{"doi":"10.70048/2473-vw67","updated":"2020-09-28T07:50:35.000Z"},"relationships":{}},{"id":"10.70048/3056-0675","type":"dois","attributes":{"doi":"10.70048/3056-0675","updated":"2020-09-28T07:50:34.000Z"},"relationships":{}},{"id":"10.70048/f1c1-mn31","type":"dois","attributes":{"doi":"10.70048/f1c1-mn31","updated":"2020-09-28T07:50:34.000Z"},"relationships":{}},{"id":"10.70048/cr29-f925","type":"dois","attributes":{"doi":"10.70048/cr29-f925","updated":"2020-09-28T07:50:34.000Z"},"relationships":{}},{"id":"10.70048/te61-a853","type":"dois","attributes":{"doi":"10.70048/te61-a853","updated":"2020-09-28T07:50:34.000Z"},"relationships":{}},{"id":"10.70048/gm1d-8g70","type":"dois","attributes":{"doi":"10.70048/gm1d-8g70","updated":"2020-09-28T07:50:34.000Z"},"relationships":{}},{"id":"10.70048/gv6y-zg05","type":"dois","attributes":{"doi":"10.70048/gv6y-zg05","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.0307/1q2t-vz79","type":"dois","attributes":{"doi":"10.0307/1q2t-vz79","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/mutaamba2","type":"dois","attributes":{"doi":"10.70048/mutaamba2","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/j68m-e020","type":"dois","attributes":{"doi":"10.70048/j68m-e020","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/zzn4-na09","type":"dois","attributes":{"doi":"10.70048/zzn4-na09","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/4qdy-t523","type":"dois","attributes":{"doi":"10.70048/4qdy-t523","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/mutaamba","type":"dois","attributes":{"doi":"10.70048/mutaamba","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/schemaorgpayload","type":"dois","attributes":{"doi":"10.70048/schemaorgpayload","updated":"2020-09-28T07:50:33.000Z"},"relationships":{}},{"id":"10.70048/3x76-rv10","type":"dois","attributes":{"doi":"10.70048/3x76-rv10","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.70048/h52p-ym19","type":"dois","attributes":{"doi":"10.70048/h52p-ym19","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.0307/ir-3115","type":"dois","attributes":{"doi":"10.0307/ir-3115","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.70048/q3sn-h087","type":"dois","attributes":{"doi":"10.70048/q3sn-h087","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.70048/avkn-fx37","type":"dois","attributes":{"doi":"10.70048/avkn-fx37","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.70048/g4ez-rb18","type":"dois","attributes":{"doi":"10.70048/g4ez-rb18","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.70048/qv3k-9d05","type":"dois","attributes":{"doi":"10.70048/qv3k-9d05","updated":"2020-09-28T07:50:32.000Z"},"relationships":{}},{"id":"10.0307/ir-3118","type":"dois","attributes":{"doi":"10.0307/ir-3118","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.70048/kxy1-n878","type":"dois","attributes":{"doi":"10.70048/kxy1-n878","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.0307/atmire_test_ir-467","type":"dois","attributes":{"doi":"10.0307/atmire_test_ir-467","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.0307/e8ma-7s12","type":"dois","attributes":{"doi":"10.0307/e8ma-7s12","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.70048/basic","type":"dois","attributes":{"doi":"10.70048/basic","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.0307/ir-3117","type":"dois","attributes":{"doi":"10.0307/ir-3117","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.70048/yv0m-pa36","type":"dois","attributes":{"doi":"10.70048/yv0m-pa36","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.0307/jonasmaclocalfsc.1","type":"dois","attributes":{"doi":"10.0307/jonasmaclocalfsc.1","updated":"2020-09-28T07:50:31.000Z"},"relationships":{}},{"id":"10.70048/nocreators","type":"dois","attributes":{"doi":"10.70048/nocreators","updated":"2020-09-27T18:23:23.000Z"},"relationships":{}},{"id":"10.14760/snap-2017-006-en","type":"dois","attributes":{"doi":"10.14760/snap-2017-006-en","updated":"2020-09-20T10:30:05.000Z"},"relationships":{}},{"id":"10.25601/ta33-xc34","type":"dois","attributes":{"doi":"10.25601/ta33-xc34","updated":"2020-09-20T09:45:26.000Z"},"relationships":{}},{"id":"10.70106/tind.312803","type":"dois","attributes":{"doi":"10.70106/tind.312803","updated":"2020-09-20T09:45:26.000Z"},"relationships":{}},{"id":"10.33581/test2019.2","type":"dois","attributes":{"doi":"10.33581/test2019.2","updated":"2020-09-20T09:44:05.000Z"},"relationships":{}},{"id":"10.21945/surf-test.8ff2ae03-578c6039","type":"dois","attributes":{"doi":"10.21945/surf-test.8ff2ae03-578c6039","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.21945/surf-image.8ff2ae03-578c6039","type":"dois","attributes":{"doi":"10.21945/surf-image.8ff2ae03-578c6039","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.21945/surf-test.8ff2ae03-d07e4c84","type":"dois","attributes":{"doi":"10.21945/surf-test.8ff2ae03-d07e4c84","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.21945/surf-image.8ff2ae03-d07e4c84","type":"dois","attributes":{"doi":"10.21945/surf-image.8ff2ae03-d07e4c84","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.21945/surf-image.82df4163-d07e4c84","type":"dois","attributes":{"doi":"10.21945/surf-image.82df4163-d07e4c84","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.21945/surf-image.8ff2ae03-c9cac144","type":"dois","attributes":{"doi":"10.21945/surf-image.8ff2ae03-c9cac144","updated":"2020-09-20T09:37:09.000Z"},"relationships":{}},{"id":"10.33529/50d3-547d","type":"dois","attributes":{"doi":"10.33529/50d3-547d","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.21945/surf-image.abe062e8-c4a993db","type":"dois","attributes":{"doi":"10.21945/surf-image.abe062e8-c4a993db","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.33529/0eea-e527","type":"dois","attributes":{"doi":"10.33529/0eea-e527","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.33529/9ade-ed60","type":"dois","attributes":{"doi":"10.33529/9ade-ed60","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.21945/surf-image.1f9b3206-63087057","type":"dois","attributes":{"doi":"10.21945/surf-image.1f9b3206-63087057","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.21945/surf-image.1f9b3206-b75bb09a","type":"dois","attributes":{"doi":"10.21945/surf-image.1f9b3206-b75bb09a","updated":"2020-09-20T09:37:08.000Z"},"relationships":{}},{"id":"10.33529/72dc-5885","type":"dois","attributes":{"doi":"10.33529/72dc-5885","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/3377-a2db","type":"dois","attributes":{"doi":"10.33529/3377-a2db","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/d888-ec94","type":"dois","attributes":{"doi":"10.33529/d888-ec94","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/cb27-b20e","type":"dois","attributes":{"doi":"10.33529/cb27-b20e","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/a1a5-2ddb","type":"dois","attributes":{"doi":"10.33529/a1a5-2ddb","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/83fc-f144","type":"dois","attributes":{"doi":"10.33529/83fc-f144","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/5c8f-0362","type":"dois","attributes":{"doi":"10.33529/5c8f-0362","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/ece9-c69a","type":"dois","attributes":{"doi":"10.33529/ece9-c69a","updated":"2020-09-20T09:37:07.000Z"},"relationships":{}},{"id":"10.33529/7918-b5b8","type":"dois","attributes":{"doi":"10.33529/7918-b5b8","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/cf64-8159","type":"dois","attributes":{"doi":"10.33529/cf64-8159","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/5a6a-4ac4","type":"dois","attributes":{"doi":"10.33529/5a6a-4ac4","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/277d-4e33","type":"dois","attributes":{"doi":"10.33529/277d-4e33","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/931b-c60e","type":"dois","attributes":{"doi":"10.33529/931b-c60e","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/ebc0-bb07","type":"dois","attributes":{"doi":"10.33529/ebc0-bb07","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/6bde-1fd0","type":"dois","attributes":{"doi":"10.33529/6bde-1fd0","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/40d8-9a9d","type":"dois","attributes":{"doi":"10.33529/40d8-9a9d","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/1a39-d699","type":"dois","attributes":{"doi":"10.33529/1a39-d699","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/5093-a75b","type":"dois","attributes":{"doi":"10.33529/5093-a75b","updated":"2020-09-20T09:37:06.000Z"},"relationships":{}},{"id":"10.33529/a68e-05a4","type":"dois","attributes":{"doi":"10.33529/a68e-05a4","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/e2b6-7ce7","type":"dois","attributes":{"doi":"10.33529/e2b6-7ce7","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/0c7f-b889","type":"dois","attributes":{"doi":"10.33529/0c7f-b889","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/1190-4ee2","type":"dois","attributes":{"doi":"10.33529/1190-4ee2","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/2d36-0409","type":"dois","attributes":{"doi":"10.33529/2d36-0409","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/7e7c-2931","type":"dois","attributes":{"doi":"10.33529/7e7c-2931","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/0d37-a6a8","type":"dois","attributes":{"doi":"10.33529/0d37-a6a8","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/73fa-58e4","type":"dois","attributes":{"doi":"10.33529/73fa-58e4","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/e75c-9f2f","type":"dois","attributes":{"doi":"10.33529/e75c-9f2f","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/0b0d-6d95","type":"dois","attributes":{"doi":"10.33529/0b0d-6d95","updated":"2020-09-20T09:37:05.000Z"},"relationships":{}},{"id":"10.33529/a795-9225","type":"dois","attributes":{"doi":"10.33529/a795-9225","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/7303-c4a4","type":"dois","attributes":{"doi":"10.33529/7303-c4a4","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/7d08-e7d9","type":"dois","attributes":{"doi":"10.33529/7d08-e7d9","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/740c-a0d2","type":"dois","attributes":{"doi":"10.33529/740c-a0d2","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/8122-0d24","type":"dois","attributes":{"doi":"10.33529/8122-0d24","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/e96d-a51f","type":"dois","attributes":{"doi":"10.33529/e96d-a51f","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/1729-8eab","type":"dois","attributes":{"doi":"10.33529/1729-8eab","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/841e-800c","type":"dois","attributes":{"doi":"10.33529/841e-800c","updated":"2020-09-20T09:37:04.000Z"},"relationships":{}},{"id":"10.33529/03cd-04a8","type":"dois","attributes":{"doi":"10.33529/03cd-04a8","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/3876-aa97","type":"dois","attributes":{"doi":"10.33529/3876-aa97","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/f2b9-3ae0","type":"dois","attributes":{"doi":"10.33529/f2b9-3ae0","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/0dff-8b38","type":"dois","attributes":{"doi":"10.33529/0dff-8b38","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/3427-8da8","type":"dois","attributes":{"doi":"10.33529/3427-8da8","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/2054-ff39","type":"dois","attributes":{"doi":"10.33529/2054-ff39","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/bd46-8599","type":"dois","attributes":{"doi":"10.33529/bd46-8599","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/a9fc-37b2","type":"dois","attributes":{"doi":"10.33529/a9fc-37b2","updated":"2020-09-20T09:37:03.000Z"},"relationships":{}},{"id":"10.33529/d428-a38f","type":"dois","attributes":{"doi":"10.33529/d428-a38f","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/a915-aeab","type":"dois","attributes":{"doi":"10.33529/a915-aeab","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/9d47-e671","type":"dois","attributes":{"doi":"10.33529/9d47-e671","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/b24e-9d74","type":"dois","attributes":{"doi":"10.33529/b24e-9d74","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/dafa-6664","type":"dois","attributes":{"doi":"10.33529/dafa-6664","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/46fb-e35c","type":"dois","attributes":{"doi":"10.33529/46fb-e35c","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/4ce8-de1c","type":"dois","attributes":{"doi":"10.33529/4ce8-de1c","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/0bc6-88f0","type":"dois","attributes":{"doi":"10.33529/0bc6-88f0","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/689e-70c5","type":"dois","attributes":{"doi":"10.33529/689e-70c5","updated":"2020-09-20T09:37:02.000Z"},"relationships":{}},{"id":"10.33529/76af-9f20","type":"dois","attributes":{"doi":"10.33529/76af-9f20","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/1da6-a3ed","type":"dois","attributes":{"doi":"10.33529/1da6-a3ed","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/65b8-5442","type":"dois","attributes":{"doi":"10.33529/65b8-5442","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/9bff-b0de","type":"dois","attributes":{"doi":"10.33529/9bff-b0de","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/eb0d-1803","type":"dois","attributes":{"doi":"10.33529/eb0d-1803","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/4e54-85c9","type":"dois","attributes":{"doi":"10.33529/4e54-85c9","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/cc94-a994","type":"dois","attributes":{"doi":"10.33529/cc94-a994","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/7418-de55","type":"dois","attributes":{"doi":"10.33529/7418-de55","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/3788-7827","type":"dois","attributes":{"doi":"10.33529/3788-7827","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/ba0d-500f","type":"dois","attributes":{"doi":"10.33529/ba0d-500f","updated":"2020-09-20T09:37:01.000Z"},"relationships":{}},{"id":"10.33529/41ba-6b11","type":"dois","attributes":{"doi":"10.33529/41ba-6b11","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/33af-ba09","type":"dois","attributes":{"doi":"10.33529/33af-ba09","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/4319-737c","type":"dois","attributes":{"doi":"10.33529/4319-737c","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/2ea8-7b94","type":"dois","attributes":{"doi":"10.33529/2ea8-7b94","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/9f53-c3de","type":"dois","attributes":{"doi":"10.33529/9f53-c3de","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/5608-345b","type":"dois","attributes":{"doi":"10.33529/5608-345b","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/0fbc-8523","type":"dois","attributes":{"doi":"10.33529/0fbc-8523","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/ecba-d8aa","type":"dois","attributes":{"doi":"10.33529/ecba-d8aa","updated":"2020-09-20T09:37:00.000Z"},"relationships":{}},{"id":"10.33529/d79a-0a08","type":"dois","attributes":{"doi":"10.33529/d79a-0a08","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/98dd-18c6","type":"dois","attributes":{"doi":"10.33529/98dd-18c6","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/f457-92d2","type":"dois","attributes":{"doi":"10.33529/f457-92d2","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/8796-7304","type":"dois","attributes":{"doi":"10.33529/8796-7304","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/bf2d-3875","type":"dois","attributes":{"doi":"10.33529/bf2d-3875","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/336d-de7c","type":"dois","attributes":{"doi":"10.33529/336d-de7c","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/d19f-518f","type":"dois","attributes":{"doi":"10.33529/d19f-518f","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/c4cd-73f3","type":"dois","attributes":{"doi":"10.33529/c4cd-73f3","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/e671-77cd","type":"dois","attributes":{"doi":"10.33529/e671-77cd","updated":"2020-09-20T09:36:59.000Z"},"relationships":{}},{"id":"10.33529/51e5-47cd","type":"dois","attributes":{"doi":"10.33529/51e5-47cd","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/a71d-52db","type":"dois","attributes":{"doi":"10.33529/a71d-52db","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/5625-7505","type":"dois","attributes":{"doi":"10.33529/5625-7505","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/8213-fe09","type":"dois","attributes":{"doi":"10.33529/8213-fe09","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/3c9e-1a1c","type":"dois","attributes":{"doi":"10.33529/3c9e-1a1c","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/b7d8-1ac0","type":"dois","attributes":{"doi":"10.33529/b7d8-1ac0","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/cc76-7b72","type":"dois","attributes":{"doi":"10.33529/cc76-7b72","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/1861-2e2f","type":"dois","attributes":{"doi":"10.33529/1861-2e2f","updated":"2020-09-20T09:36:58.000Z"},"relationships":{}},{"id":"10.33529/8362-1765","type":"dois","attributes":{"doi":"10.33529/8362-1765","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/70df-a8c8","type":"dois","attributes":{"doi":"10.33529/70df-a8c8","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/45bf-fa68","type":"dois","attributes":{"doi":"10.33529/45bf-fa68","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33528/f615-c221","type":"dois","attributes":{"doi":"10.33528/f615-c221","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/f34b-663c","type":"dois","attributes":{"doi":"10.33529/f34b-663c","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/689c-c8c8","type":"dois","attributes":{"doi":"10.33529/689c-c8c8","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/2f27-7fe6","type":"dois","attributes":{"doi":"10.33529/2f27-7fe6","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/e2be-eab1","type":"dois","attributes":{"doi":"10.33529/e2be-eab1","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33529/ba25-c82b","type":"dois","attributes":{"doi":"10.33529/ba25-c82b","updated":"2020-09-20T09:36:57.000Z"},"relationships":{}},{"id":"10.33528/9628-4bc8","type":"dois","attributes":{"doi":"10.33528/9628-4bc8","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/17b9-502d","type":"dois","attributes":{"doi":"10.33528/17b9-502d","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/2fcb-6df6","type":"dois","attributes":{"doi":"10.33528/2fcb-6df6","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/4cee-b9e4","type":"dois","attributes":{"doi":"10.33528/4cee-b9e4","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/7afd-185b","type":"dois","attributes":{"doi":"10.33528/7afd-185b","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/b950-f2f4","type":"dois","attributes":{"doi":"10.33528/b950-f2f4","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/8b03-8e41","type":"dois","attributes":{"doi":"10.33528/8b03-8e41","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/275e-03c8","type":"dois","attributes":{"doi":"10.33528/275e-03c8","updated":"2020-09-20T09:36:56.000Z"},"relationships":{}},{"id":"10.33528/318f-7068","type":"dois","attributes":{"doi":"10.33528/318f-7068","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/313e-5585","type":"dois","attributes":{"doi":"10.33528/313e-5585","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/d382-3f8b","type":"dois","attributes":{"doi":"10.33528/d382-3f8b","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/036d-b92d","type":"dois","attributes":{"doi":"10.33528/036d-b92d","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/f172-ef0f","type":"dois","attributes":{"doi":"10.33528/f172-ef0f","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/2fec-1118","type":"dois","attributes":{"doi":"10.33528/2fec-1118","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/b5d2-fda7","type":"dois","attributes":{"doi":"10.33528/b5d2-fda7","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/75af-9dd3","type":"dois","attributes":{"doi":"10.33528/75af-9dd3","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/b477-be7c","type":"dois","attributes":{"doi":"10.33528/b477-be7c","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/4632-cea5","type":"dois","attributes":{"doi":"10.33528/4632-cea5","updated":"2020-09-20T09:36:55.000Z"},"relationships":{}},{"id":"10.33528/ca3c-3ab0","type":"dois","attributes":{"doi":"10.33528/ca3c-3ab0","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/1395-70f7","type":"dois","attributes":{"doi":"10.33528/1395-70f7","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/ccb3-3fae","type":"dois","attributes":{"doi":"10.33528/ccb3-3fae","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/8344-c6d2","type":"dois","attributes":{"doi":"10.33528/8344-c6d2","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/3c73-bf02","type":"dois","attributes":{"doi":"10.33528/3c73-bf02","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/f460-0120","type":"dois","attributes":{"doi":"10.33528/f460-0120","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/6541-87b0","type":"dois","attributes":{"doi":"10.33528/6541-87b0","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/e844-7d15","type":"dois","attributes":{"doi":"10.33528/e844-7d15","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33528/f7ac-9ec4","type":"dois","attributes":{"doi":"10.33528/f7ac-9ec4","updated":"2020-09-20T09:36:54.000Z"},"relationships":{}},{"id":"10.33529/b9a1-e5e1","type":"dois","attributes":{"doi":"10.33529/b9a1-e5e1","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/9697-20d0","type":"dois","attributes":{"doi":"10.33528/9697-20d0","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/3781-0008","type":"dois","attributes":{"doi":"10.33528/3781-0008","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/6043-7935","type":"dois","attributes":{"doi":"10.33528/6043-7935","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/fb91-3a97","type":"dois","attributes":{"doi":"10.33528/fb91-3a97","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/fbea-8865","type":"dois","attributes":{"doi":"10.33528/fbea-8865","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/0b13-6194","type":"dois","attributes":{"doi":"10.33528/0b13-6194","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/61a1-962b","type":"dois","attributes":{"doi":"10.33528/61a1-962b","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33528/765c-f29d","type":"dois","attributes":{"doi":"10.33528/765c-f29d","updated":"2020-09-20T09:36:53.000Z"},"relationships":{}},{"id":"10.33529/17a3-deac","type":"dois","attributes":{"doi":"10.33529/17a3-deac","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/62cb-85fb","type":"dois","attributes":{"doi":"10.33529/62cb-85fb","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/0d56-7299","type":"dois","attributes":{"doi":"10.33529/0d56-7299","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/8895-ce9e","type":"dois","attributes":{"doi":"10.33529/8895-ce9e","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/926c-0a12","type":"dois","attributes":{"doi":"10.33529/926c-0a12","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/a1b9-7858","type":"dois","attributes":{"doi":"10.33529/a1b9-7858","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/b957-949b","type":"dois","attributes":{"doi":"10.33529/b957-949b","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/1385-0fc1","type":"dois","attributes":{"doi":"10.33529/1385-0fc1","updated":"2020-09-20T09:36:52.000Z"},"relationships":{}},{"id":"10.33529/b8fb-cd11","type":"dois","attributes":{"doi":"10.33529/b8fb-cd11","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/beb5-e551","type":"dois","attributes":{"doi":"10.33529/beb5-e551","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/6656-b4c7","type":"dois","attributes":{"doi":"10.33529/6656-b4c7","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/5ed6-6fd2","type":"dois","attributes":{"doi":"10.33529/5ed6-6fd2","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/e8fa-a94e","type":"dois","attributes":{"doi":"10.33529/e8fa-a94e","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/8d20-5a1f","type":"dois","attributes":{"doi":"10.33529/8d20-5a1f","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33528/2f6a-e21a","type":"dois","attributes":{"doi":"10.33528/2f6a-e21a","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/83d2-a5f4","type":"dois","attributes":{"doi":"10.33529/83d2-a5f4","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/80f3-75a1","type":"dois","attributes":{"doi":"10.33529/80f3-75a1","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33529/513b-bb44","type":"dois","attributes":{"doi":"10.33529/513b-bb44","updated":"2020-09-20T09:36:51.000Z"},"relationships":{}},{"id":"10.33586/93bfd13e-3e84-4d96-96e3-c9507840120e","type":"dois","attributes":{"doi":"10.33586/93bfd13e-3e84-4d96-96e3-c9507840120e","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/e3bcc369-a3bd-4fa2-8baa-cd3b7b1d655b","type":"dois","attributes":{"doi":"10.33586/e3bcc369-a3bd-4fa2-8baa-cd3b7b1d655b","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33532/0wdf-w513","type":"dois","attributes":{"doi":"10.33532/0wdf-w513","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33532/8s2f-p403","type":"dois","attributes":{"doi":"10.33532/8s2f-p403","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/443344e0-e8f0-4c07-83f3-3e2de0d12523","type":"dois","attributes":{"doi":"10.33586/443344e0-e8f0-4c07-83f3-3e2de0d12523","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/944bec6a-bea3-4e7c-b607-2b7f55ee1623","type":"dois","attributes":{"doi":"10.33586/944bec6a-bea3-4e7c-b607-2b7f55ee1623","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/bffccd26-9868-441f-a6d0-8d7977d9a060","type":"dois","attributes":{"doi":"10.33586/bffccd26-9868-441f-a6d0-8d7977d9a060","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/ed8ee62b-915f-439d-b0e0-808593a47d5a","type":"dois","attributes":{"doi":"10.33586/ed8ee62b-915f-439d-b0e0-808593a47d5a","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/27908eb3-25a3-4ab0-9243-21c428e55073","type":"dois","attributes":{"doi":"10.33586/27908eb3-25a3-4ab0-9243-21c428e55073","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/5cfedea3-82e7-47d3-9b55-273483754abc","type":"dois","attributes":{"doi":"10.33586/5cfedea3-82e7-47d3-9b55-273483754abc","updated":"2020-09-20T09:36:50.000Z"},"relationships":{}},{"id":"10.33586/c2c54b22-4ca2-44dc-bba0-30f734db8eb0","type":"dois","attributes":{"doi":"10.33586/c2c54b22-4ca2-44dc-bba0-30f734db8eb0","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/961e19c5-c09e-4883-bc93-474d7a144089","type":"dois","attributes":{"doi":"10.33586/961e19c5-c09e-4883-bc93-474d7a144089","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/656a1b78-71c3-419d-b4a4-ebbc2dbe866f","type":"dois","attributes":{"doi":"10.33586/656a1b78-71c3-419d-b4a4-ebbc2dbe866f","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/8ae87151-1dd6-4689-ba40-8528321c66f9","type":"dois","attributes":{"doi":"10.33586/8ae87151-1dd6-4689-ba40-8528321c66f9","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/d276c1a5-fab2-4c7f-b42e-c61cf10e93fd","type":"dois","attributes":{"doi":"10.33586/d276c1a5-fab2-4c7f-b42e-c61cf10e93fd","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/5db60bd8-5225-48c7-8eed-602400b180eb","type":"dois","attributes":{"doi":"10.33586/5db60bd8-5225-48c7-8eed-602400b180eb","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/5b2c1d61-d74d-4740-bfc7-75e6d63e336d","type":"dois","attributes":{"doi":"10.33586/5b2c1d61-d74d-4740-bfc7-75e6d63e336d","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/4d8051e9-e26e-4fc2-b9d9-d99957f9a913","type":"dois","attributes":{"doi":"10.33586/4d8051e9-e26e-4fc2-b9d9-d99957f9a913","updated":"2020-09-20T09:36:49.000Z"},"relationships":{}},{"id":"10.33586/24e20f22-19e4-4754-8e46-99b3c947d28d","type":"dois","attributes":{"doi":"10.33586/24e20f22-19e4-4754-8e46-99b3c947d28d","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/4321f460-e460-4730-982b-6aa3fece178a","type":"dois","attributes":{"doi":"10.33586/4321f460-e460-4730-982b-6aa3fece178a","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/880b208b-be1c-4b85-8fbc-7a59237993cc","type":"dois","attributes":{"doi":"10.33586/880b208b-be1c-4b85-8fbc-7a59237993cc","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/c85f1f78-6b03-4656-a7c4-6ea66e398162","type":"dois","attributes":{"doi":"10.33586/c85f1f78-6b03-4656-a7c4-6ea66e398162","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/4cfa5a7d-2351-40e1-81a7-8a7c7e501141","type":"dois","attributes":{"doi":"10.33586/4cfa5a7d-2351-40e1-81a7-8a7c7e501141","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/b04eacf6-51e8-4368-97bc-8ff3eb5bd4b8","type":"dois","attributes":{"doi":"10.33586/b04eacf6-51e8-4368-97bc-8ff3eb5bd4b8","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/1455eb93-5d5b-408e-a5d0-5fea82d32884","type":"dois","attributes":{"doi":"10.33586/1455eb93-5d5b-408e-a5d0-5fea82d32884","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","type":"dois","attributes":{"doi":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","updated":"2020-09-20T09:36:48.000Z"},"relationships":{}},{"id":"10.21945/surf-image.db6d9b45-48eb8c92","type":"dois","attributes":{"doi":"10.21945/surf-image.db6d9b45-48eb8c92","updated":"2020-09-20T09:36:47.000Z"},"relationships":{}},{"id":"10.33586/5a3b3e69-2498-45b5-bb55-0e349a8ea353","type":"dois","attributes":{"doi":"10.33586/5a3b3e69-2498-45b5-bb55-0e349a8ea353","updated":"2020-09-20T09:36:47.000Z"},"relationships":{}},{"id":"10.7966/w4cp-0v10","type":"dois","attributes":{"doi":"10.7966/w4cp-0v10","updated":"2020-09-20T09:30:26.000Z"},"relationships":{}},{"id":"10.4230/datacite-example","type":"dois","attributes":{"doi":"10.4230/datacite-example","updated":"2020-09-20T09:30:09.000Z"},"relationships":{}},{"id":"10.80082/ncn6-tr27","type":"dois","attributes":{"doi":"10.80082/ncn6-tr27","updated":"2020-09-20T09:30:09.000Z"},"relationships":{}},{"id":"10.21383/93k1-jn44","type":"dois","attributes":{"doi":"10.21383/93k1-jn44","updated":"2020-09-20T09:30:08.000Z"},"relationships":{}},{"id":"10.70126/3xr7-zr06","type":"dois","attributes":{"doi":"10.70126/3xr7-zr06","updated":"2020-09-20T09:30:08.000Z"},"relationships":{}},{"id":"10.21383/2d5x-xj79","type":"dois","attributes":{"doi":"10.21383/2d5x-xj79","updated":"2020-09-20T09:30:08.000Z"},"relationships":{}},{"id":"10.21383/4nj3-gk92","type":"dois","attributes":{"doi":"10.21383/4nj3-gk92","updated":"2020-09-20T09:30:08.000Z"},"relationships":{}},{"id":"10.70126/f148-fz79","type":"dois","attributes":{"doi":"10.70126/f148-fz79","updated":"2020-09-20T09:30:07.000Z"},"relationships":{}},{"id":"10.13143/cfbr_colloque2019_a11_test_200","type":"dois","attributes":{"doi":"10.13143/cfbr_colloque2019_a11_test_200","updated":"2020-09-20T09:30:05.000Z"},"relationships":{}},{"id":"10.21373/dexd-zb61","type":"dois","attributes":{"doi":"10.21373/dexd-zb61","updated":"2020-09-20T09:30:04.000Z"},"relationships":{}},{"id":"10.6096/17","type":"dois","attributes":{"doi":"10.6096/17","updated":"2020-09-20T09:28:06.000Z"},"relationships":{}},{"id":"10.6096/15","type":"dois","attributes":{"doi":"10.6096/15","updated":"2020-09-20T09:28:06.000Z"},"relationships":{}},{"id":"10.21946/5ece3c0532b85","type":"dois","attributes":{"doi":"10.21946/5ece3c0532b85","updated":"2020-09-20T09:28:04.000Z"},"relationships":{}},{"id":"10.6096/24","type":"dois","attributes":{"doi":"10.6096/24","updated":"2020-09-20T09:28:03.000Z"},"relationships":{}},{"id":"10.6096/27","type":"dois","attributes":{"doi":"10.6096/27","updated":"2020-09-20T09:28:02.000Z"},"relationships":{}},{"id":"10.80094/202000042","type":"dois","attributes":{"doi":"10.80094/202000042","updated":"2020-09-20T09:28:01.000Z"},"relationships":{}},{"id":"10.6096/23","type":"dois","attributes":{"doi":"10.6096/23","updated":"2020-09-20T09:28:01.000Z"},"relationships":{}},{"id":"10.6096/21","type":"dois","attributes":{"doi":"10.6096/21","updated":"2020-09-20T09:28:01.000Z"},"relationships":{}},{"id":"10.6096/22","type":"dois","attributes":{"doi":"10.6096/22","updated":"2020-09-20T09:28:00.000Z"},"relationships":{}},{"id":"10.6096/20","type":"dois","attributes":{"doi":"10.6096/20","updated":"2020-09-20T09:28:00.000Z"},"relationships":{}},{"id":"10.25502/hxqt-e408","type":"dois","attributes":{"doi":"10.25502/hxqt-e408","updated":"2020-09-20T09:28:00.000Z"},"relationships":{}},{"id":"10.25502/mta8-n276","type":"dois","attributes":{"doi":"10.25502/mta8-n276","updated":"2020-09-20T09:27:59.000Z"},"relationships":{}},{"id":"10.80253/135510","type":"dois","attributes":{"doi":"10.80253/135510","updated":"2020-09-20T09:27:59.000Z"},"relationships":{}},{"id":"10.25502/q53z-ys91","type":"dois","attributes":{"doi":"10.25502/q53z-ys91","updated":"2020-09-20T09:27:58.000Z"},"relationships":{}},{"id":"10.25502/wkjk-b545","type":"dois","attributes":{"doi":"10.25502/wkjk-b545","updated":"2020-09-20T09:27:58.000Z"},"relationships":{}},{"id":"10.6096/19","type":"dois","attributes":{"doi":"10.6096/19","updated":"2020-09-20T09:27:58.000Z"},"relationships":{}},{"id":"10.00012/uu01-gm72z3","type":"dois","attributes":{"doi":"10.00012/uu01-gm72z3","updated":"2020-09-20T09:27:57.000Z"},"relationships":{}},{"id":"10.00012/uu01-jdeir0","type":"dois","attributes":{"doi":"10.00012/uu01-jdeir0","updated":"2020-09-20T09:27:57.000Z"},"relationships":{}},{"id":"10.00012/uu01-83bysc","type":"dois","attributes":{"doi":"10.00012/uu01-83bysc","updated":"2020-09-20T09:27:56.000Z"},"relationships":{}},{"id":"10.00012/uu01-3t2h5e","type":"dois","attributes":{"doi":"10.00012/uu01-3t2h5e","updated":"2020-09-20T09:27:56.000Z"},"relationships":{}},{"id":"10.00012/uu01-2d5tuc","type":"dois","attributes":{"doi":"10.00012/uu01-2d5tuc","updated":"2020-09-20T09:27:56.000Z"},"relationships":{}},{"id":"10.00012/uu01-rb2jqs","type":"dois","attributes":{"doi":"10.00012/uu01-rb2jqs","updated":"2020-09-20T09:27:56.000Z"},"relationships":{}},{"id":"10.00012/uu01-ayb9ap","type":"dois","attributes":{"doi":"10.00012/uu01-ayb9ap","updated":"2020-09-20T09:27:55.000Z"},"relationships":{}},{"id":"10.00012/uu01-dc9nyu","type":"dois","attributes":{"doi":"10.00012/uu01-dc9nyu","updated":"2020-09-20T09:27:55.000Z"},"relationships":{}},{"id":"10.00012/uu01-l6ppov","type":"dois","attributes":{"doi":"10.00012/uu01-l6ppov","updated":"2020-09-20T09:27:55.000Z"},"relationships":{}},{"id":"10.00012/uu01-53qa99","type":"dois","attributes":{"doi":"10.00012/uu01-53qa99","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.25502/y7ph-8p80","type":"dois","attributes":{"doi":"10.25502/y7ph-8p80","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.00012/uu01-lh5u4q","type":"dois","attributes":{"doi":"10.00012/uu01-lh5u4q","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.25502/qvyq-qh41","type":"dois","attributes":{"doi":"10.25502/qvyq-qh41","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.00012/uu01-djnewe","type":"dois","attributes":{"doi":"10.00012/uu01-djnewe","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.00012/uu01-2u8ndf","type":"dois","attributes":{"doi":"10.00012/uu01-2u8ndf","updated":"2020-09-20T09:27:54.000Z"},"relationships":{}},{"id":"10.00012/uu01-zh0woq","type":"dois","attributes":{"doi":"10.00012/uu01-zh0woq","updated":"2020-09-20T09:27:53.000Z"},"relationships":{}},{"id":"10.00012/uu01-fb7t2a","type":"dois","attributes":{"doi":"10.00012/uu01-fb7t2a","updated":"2020-09-20T09:27:53.000Z"},"relationships":{}},{"id":"10.33591/nioz/4ijqk0","type":"dois","attributes":{"doi":"10.33591/nioz/4ijqk0","updated":"2020-09-20T09:27:53.000Z"},"relationships":{}},{"id":"10.33591/nioz/zt6y6u","type":"dois","attributes":{"doi":"10.33591/nioz/zt6y6u","updated":"2020-09-20T09:27:53.000Z"},"relationships":{}},{"id":"10.21373/tvnktr","type":"dois","attributes":{"doi":"10.21373/tvnktr","updated":"2020-09-20T09:27:52.000Z"},"relationships":{}},{"id":"10.00012/uu01-sioyug","type":"dois","attributes":{"doi":"10.00012/uu01-sioyug","updated":"2020-09-20T09:27:52.000Z"},"relationships":{}},{"id":"10.00012/uu01-tnzib4","type":"dois","attributes":{"doi":"10.00012/uu01-tnzib4","updated":"2020-09-20T09:27:52.000Z"},"relationships":{}},{"id":"10.70112/twnbhs","type":"dois","attributes":{"doi":"10.70112/twnbhs","updated":"2020-09-20T09:27:52.000Z"},"relationships":{}},{"id":"10.00012/uu01-7zoh5q","type":"dois","attributes":{"doi":"10.00012/uu01-7zoh5q","updated":"2020-09-20T09:27:51.000Z"},"relationships":{}},{"id":"10.00012/uu01-8i2swc","type":"dois","attributes":{"doi":"10.00012/uu01-8i2swc","updated":"2020-09-20T09:27:51.000Z"},"relationships":{}},{"id":"10.00012/uu01-0917bk","type":"dois","attributes":{"doi":"10.00012/uu01-0917bk","updated":"2020-09-20T09:27:51.000Z"},"relationships":{}},{"id":"10.00012/uu01-jatpd7","type":"dois","attributes":{"doi":"10.00012/uu01-jatpd7","updated":"2020-09-20T09:27:50.000Z"},"relationships":{}},{"id":"10.00012/uu01-sydyqa","type":"dois","attributes":{"doi":"10.00012/uu01-sydyqa","updated":"2020-09-20T09:27:50.000Z"},"relationships":{}},{"id":"10.00012/uu01-uqjf5f","type":"dois","attributes":{"doi":"10.00012/uu01-uqjf5f","updated":"2020-09-20T09:27:50.000Z"},"relationships":{}},{"id":"10.00012/uu01-z8ecq9","type":"dois","attributes":{"doi":"10.00012/uu01-z8ecq9","updated":"2020-09-20T09:27:50.000Z"},"relationships":{}},{"id":"10.25502/tebv-jp54","type":"dois","attributes":{"doi":"10.25502/tebv-jp54","updated":"2020-09-20T09:27:50.000Z"},"relationships":{}},{"id":"10.70112/9rzoaa/hdvpij","type":"dois","attributes":{"doi":"10.70112/9rzoaa/hdvpij","updated":"2020-09-20T09:27:49.000Z"},"relationships":{}},{"id":"10.00012/uu01-bgimlm","type":"dois","attributes":{"doi":"10.00012/uu01-bgimlm","updated":"2020-09-20T09:27:49.000Z"},"relationships":{}},{"id":"10.00012/uu01-vd5cad","type":"dois","attributes":{"doi":"10.00012/uu01-vd5cad","updated":"2020-09-20T09:27:49.000Z"},"relationships":{}},{"id":"10.21373/uyafjp","type":"dois","attributes":{"doi":"10.21373/uyafjp","updated":"2020-09-20T09:27:48.000Z"},"relationships":{}},{"id":"10.00012/uu01-2tphv1","type":"dois","attributes":{"doi":"10.00012/uu01-2tphv1","updated":"2020-09-20T09:27:48.000Z"},"relationships":{}},{"id":"10.00012/uu01-fmmurt","type":"dois","attributes":{"doi":"10.00012/uu01-fmmurt","updated":"2020-09-20T09:27:48.000Z"},"relationships":{}},{"id":"10.00012/uu01-iz2bz0","type":"dois","attributes":{"doi":"10.00012/uu01-iz2bz0","updated":"2020-09-20T09:27:47.000Z"},"relationships":{}},{"id":"10.00012/uu01-c5edey","type":"dois","attributes":{"doi":"10.00012/uu01-c5edey","updated":"2020-09-20T09:27:47.000Z"},"relationships":{}},{"id":"10.00012/uu01-z0doe2","type":"dois","attributes":{"doi":"10.00012/uu01-z0doe2","updated":"2020-09-20T09:27:47.000Z"},"relationships":{}},{"id":"10.70112/9rzoaa/n8gknu","type":"dois","attributes":{"doi":"10.70112/9rzoaa/n8gknu","updated":"2020-09-20T09:27:47.000Z"},"relationships":{}},{"id":"10.00012/uu01-0xzg0p","type":"dois","attributes":{"doi":"10.00012/uu01-0xzg0p","updated":"2020-09-20T09:27:47.000Z"},"relationships":{}},{"id":"10.00012/uu01-3a2vf2","type":"dois","attributes":{"doi":"10.00012/uu01-3a2vf2","updated":"2020-09-20T09:27:46.000Z"},"relationships":{}},{"id":"10.00012/uu01-inlbny","type":"dois","attributes":{"doi":"10.00012/uu01-inlbny","updated":"2020-09-20T09:27:46.000Z"},"relationships":{}},{"id":"10.00012/uu01-loen63","type":"dois","attributes":{"doi":"10.00012/uu01-loen63","updated":"2020-09-20T09:27:46.000Z"},"relationships":{}},{"id":"10.00012/uu01-b7s0os","type":"dois","attributes":{"doi":"10.00012/uu01-b7s0os","updated":"2020-09-20T09:27:46.000Z"},"relationships":{}},{"id":"10.00012/uu01-z86grd","type":"dois","attributes":{"doi":"10.00012/uu01-z86grd","updated":"2020-09-20T09:27:46.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1575","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1575","updated":"2020-09-20T09:27:45.000Z"},"relationships":{}},{"id":"10.00012/uu01-7ao4mr","type":"dois","attributes":{"doi":"10.00012/uu01-7ao4mr","updated":"2020-09-20T09:27:45.000Z"},"relationships":{}},{"id":"10.70112/6bfaub","type":"dois","attributes":{"doi":"10.70112/6bfaub","updated":"2020-09-20T09:27:45.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1574","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1574","updated":"2020-09-20T09:27:45.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1572","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1572","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70112/9rzoaa","type":"dois","attributes":{"doi":"10.70112/9rzoaa","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1568","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1568","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1567","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1567","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1569","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1569","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1573","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1573","updated":"2020-09-20T09:27:44.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1570","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1570","updated":"2020-09-20T09:27:43.000Z"},"relationships":{}},{"id":"10.00012/uu01-vna230","type":"dois","attributes":{"doi":"10.00012/uu01-vna230","updated":"2020-09-20T09:27:42.000Z"},"relationships":{}},{"id":"10.00012/uu01-7009cl","type":"dois","attributes":{"doi":"10.00012/uu01-7009cl","updated":"2020-09-20T09:27:40.000Z"},"relationships":{}},{"id":"10.00012/uu01-ut3440","type":"dois","attributes":{"doi":"10.00012/uu01-ut3440","updated":"2020-09-20T09:27:40.000Z"},"relationships":{}},{"id":"10.00012/uu01-rzipn4","type":"dois","attributes":{"doi":"10.00012/uu01-rzipn4","updated":"2020-09-20T09:27:39.000Z"},"relationships":{}},{"id":"10.00012/uu01-xt42v1","type":"dois","attributes":{"doi":"10.00012/uu01-xt42v1","updated":"2020-09-20T09:27:38.000Z"},"relationships":{}},{"id":"10.00012/uu01-ysnf66","type":"dois","attributes":{"doi":"10.00012/uu01-ysnf66","updated":"2020-09-20T09:27:37.000Z"},"relationships":{}},{"id":"10.00012/uu01-ymyhla","type":"dois","attributes":{"doi":"10.00012/uu01-ymyhla","updated":"2020-09-20T09:27:37.000Z"},"relationships":{}},{"id":"10.00012/uu01-nk74o2","type":"dois","attributes":{"doi":"10.00012/uu01-nk74o2","updated":"2020-09-20T09:27:37.000Z"},"relationships":{}},{"id":"10.00012/uu01-h2ilq4","type":"dois","attributes":{"doi":"10.00012/uu01-h2ilq4","updated":"2020-09-20T09:27:37.000Z"},"relationships":{}},{"id":"10.00012/uu01-ktn3y9","type":"dois","attributes":{"doi":"10.00012/uu01-ktn3y9","updated":"2020-09-20T09:27:37.000Z"},"relationships":{}},{"id":"10.00012/uu01-3hmhjj","type":"dois","attributes":{"doi":"10.00012/uu01-3hmhjj","updated":"2020-09-20T09:27:36.000Z"},"relationships":{}},{"id":"10.00012/uu01-6oi1aq","type":"dois","attributes":{"doi":"10.00012/uu01-6oi1aq","updated":"2020-09-20T09:27:36.000Z"},"relationships":{}},{"id":"10.33578/ubsi/458","type":"dois","attributes":{"doi":"10.33578/ubsi/458","updated":"2020-09-20T09:27:35.000Z"},"relationships":{}},{"id":"10.11578/1436899","type":"dois","attributes":{"doi":"10.11578/1436899","updated":"2020-09-20T09:27:35.000Z"},"relationships":{}},{"id":"10.00012/uu01-ocnqx8","type":"dois","attributes":{"doi":"10.00012/uu01-ocnqx8","updated":"2020-09-20T09:27:35.000Z"},"relationships":{}},{"id":"10.4124/test/.879w8","type":"dois","attributes":{"doi":"10.4124/test/.879w8","updated":"2020-09-10T10:09:05.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a684a4ea","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a684a4ea","updated":"2020-09-10T08:34:13.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b876ba4064","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b876ba4064","updated":"2020-09-10T08:31:57.000Z"},"relationships":{}},{"id":"10.20371/researchdatatest.cab.unipd.it.00000312","type":"dois","attributes":{"doi":"10.20371/researchdatatest.cab.unipd.it.00000312","updated":"2020-09-09T09:48:26.000Z"},"relationships":{}},{"id":"10.4124/ebqq-a905","type":"dois","attributes":{"doi":"10.4124/ebqq-a905","updated":"2020-09-09T09:23:36.000Z"},"relationships":{}},{"id":"10.33522/enik-yudj","type":"dois","attributes":{"doi":"10.33522/enik-yudj","updated":"2020-09-09T09:21:24.000Z"},"relationships":{}},{"id":"10.33522/w7kz-58ed","type":"dois","attributes":{"doi":"10.33522/w7kz-58ed","updated":"2020-09-08T13:06:25.000Z"},"relationships":{}},{"id":"10.33522/4rti-wczl","type":"dois","attributes":{"doi":"10.33522/4rti-wczl","updated":"2020-09-08T10:51:56.000Z"},"relationships":{}},{"id":"10.4124/04af-8h33","type":"dois","attributes":{"doi":"10.4124/04af-8h33","updated":"2020-09-08T08:39:37.000Z"},"relationships":{}},{"id":"10.70126/2303-bw79","type":"dois","attributes":{"doi":"10.70126/2303-bw79","updated":"2020-09-08T08:31:13.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b774037f","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b774037f","updated":"2020-09-08T08:21:06.000Z"},"relationships":{}},{"id":"10.4124/an2m-7m87","type":"dois","attributes":{"doi":"10.4124/an2m-7m87","updated":"2020-09-08T08:19:27.000Z"},"relationships":{}},{"id":"10.4124/658z-sf90","type":"dois","attributes":{"doi":"10.4124/658z-sf90","updated":"2020-09-08T08:17:55.000Z"},"relationships":{}},{"id":"10.4124/v09t-qw62","type":"dois","attributes":{"doi":"10.4124/v09t-qw62","updated":"2020-09-08T08:16:04.000Z"},"relationships":{}},{"id":"10.4124/40n9-vv35","type":"dois","attributes":{"doi":"10.4124/40n9-vv35","updated":"2020-09-08T08:12:47.000Z"},"relationships":{}},{"id":"10.0330/h0az-sj54","type":"dois","attributes":{"doi":"10.0330/h0az-sj54","updated":"2020-09-07T16:29:58.000Z"},"relationships":{}},{"id":"10.4121/eb2z-8122","type":"dois","attributes":{"doi":"10.4121/eb2z-8122","updated":"2020-08-26T09:05:08.000Z"},"relationships":{}},{"id":"10.4121/2v5t-8734","type":"dois","attributes":{"doi":"10.4121/2v5t-8734","updated":"2020-08-26T09:03:35.000Z"},"relationships":{}},{"id":"10.70041/x0jf-mr23","type":"dois","attributes":{"doi":"10.70041/x0jf-mr23","updated":"2020-08-24T09:15:46.000Z"},"relationships":{}},{"id":"10.17889/e111151v1","type":"dois","attributes":{"doi":"10.17889/e111151v1","updated":"2020-08-23T21:29:40.000Z"},"relationships":{}},{"id":"10.33578/ubsi/761","type":"dois","attributes":{"doi":"10.33578/ubsi/761","updated":"2020-08-23T21:17:26.000Z"},"relationships":{}},{"id":"10.25601/2a21f43c-ef17-4fd7-8731-950ed69036b8","type":"dois","attributes":{"doi":"10.25601/2a21f43c-ef17-4fd7-8731-950ed69036b8","updated":"2020-08-23T21:14:29.000Z"},"relationships":{}},{"id":"10.12685/kkbt-p833","type":"dois","attributes":{"doi":"10.12685/kkbt-p833","updated":"2020-08-21T08:56:58.000Z"},"relationships":{}},{"id":"10.4224/crm.2012e.cass-5","type":"dois","attributes":{"doi":"10.4224/crm.2012e.cass-5","updated":"2020-08-20T14:04:05.000Z"},"relationships":{}},{"id":"10.17863/cam.330","type":"dois","attributes":{"doi":"10.17863/cam.330","updated":"2020-08-20T09:08:02.000Z"},"relationships":{}},{"id":"10.12685/1yf7-te97","type":"dois","attributes":{"doi":"10.12685/1yf7-te97","updated":"2020-08-10T17:03:47.000Z"},"relationships":{}},{"id":"10.21373/0b3r-v178","type":"dois","attributes":{"doi":"10.21373/0b3r-v178","updated":"2020-08-09T11:47:10.000Z"},"relationships":{}},{"id":"10.12685/q4mh-j739","type":"dois","attributes":{"doi":"10.12685/q4mh-j739","updated":"2020-07-27T16:53:03.000Z"},"relationships":{}},{"id":"10.5256/f1000research.469576.d364584","type":"dois","attributes":{"doi":"10.5256/f1000research.469576.d364584","updated":"2020-07-27T16:01:37.000Z"},"relationships":{}},{"id":"10.5256/f1000research.475686.r30088","type":"dois","attributes":{"doi":"10.5256/f1000research.475686.r30088","updated":"2020-07-27T16:01:37.000Z"},"relationships":{}},{"id":"10.17889/e108242v1","type":"dois","attributes":{"doi":"10.17889/e108242v1","updated":"2020-07-27T16:01:36.000Z"},"relationships":{}},{"id":"10.17889/e108011v3","type":"dois","attributes":{"doi":"10.17889/e108011v3","updated":"2020-07-27T16:01:36.000Z"},"relationships":{}},{"id":"10.5256/f1000research.469575.d364549","type":"dois","attributes":{"doi":"10.5256/f1000research.469575.d364549","updated":"2020-07-27T16:01:35.000Z"},"relationships":{}},{"id":"10.5256/f1000research.475685.r30086","type":"dois","attributes":{"doi":"10.5256/f1000research.475685.r30086","updated":"2020-07-27T16:01:34.000Z"},"relationships":{}},{"id":"10.5256/f1000research.471873.r30028","type":"dois","attributes":{"doi":"10.5256/f1000research.471873.r30028","updated":"2020-07-27T16:01:26.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85f959986","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85f959986","updated":"2020-07-27T15:59:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b8627e9c33","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b8627e9c33","updated":"2020-07-27T15:59:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85e132898","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85e132898","updated":"2020-07-27T15:59:56.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2m2","type":"dois","attributes":{"doi":"10.15771/imejidev.2m2","updated":"2020-07-27T15:59:55.000Z"},"relationships":{}},{"id":"10.70122/fk2/cvfkvt","type":"dois","attributes":{"doi":"10.70122/fk2/cvfkvt","updated":"2020-07-27T15:59:51.000Z"},"relationships":{}},{"id":"10.70112/e2h01w/mro8c5","type":"dois","attributes":{"doi":"10.70112/e2h01w/mro8c5","updated":"2020-07-27T15:59:47.000Z"},"relationships":{}},{"id":"10.70112/e2h01w","type":"dois","attributes":{"doi":"10.70112/e2h01w","updated":"2020-07-27T15:59:45.000Z"},"relationships":{}},{"id":"10.70112/4atren","type":"dois","attributes":{"doi":"10.70112/4atren","updated":"2020-07-27T15:59:45.000Z"},"relationships":{}},{"id":"10.70122/fk2/lgwrgy/qz3nbd","type":"dois","attributes":{"doi":"10.70122/fk2/lgwrgy/qz3nbd","updated":"2020-07-27T15:59:40.000Z"},"relationships":{}},{"id":"10.70122/fk2/gsl3dv","type":"dois","attributes":{"doi":"10.70122/fk2/gsl3dv","updated":"2020-07-27T15:59:40.000Z"},"relationships":{}},{"id":"10.70122/fk2/ua1jgn/fpzr6r","type":"dois","attributes":{"doi":"10.70122/fk2/ua1jgn/fpzr6r","updated":"2020-07-27T15:59:38.000Z"},"relationships":{}},{"id":"10.70122/fk2/0d8css/sfnknt","type":"dois","attributes":{"doi":"10.70122/fk2/0d8css/sfnknt","updated":"2020-07-27T15:59:33.000Z"},"relationships":{}},{"id":"10.70122/fk2/k7xyag/d6ns1t","type":"dois","attributes":{"doi":"10.70122/fk2/k7xyag/d6ns1t","updated":"2020-07-27T15:59:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b86532f6d5","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b86532f6d5","updated":"2020-07-27T15:59:26.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b86f322e40","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b86f322e40","updated":"2020-07-27T15:59:26.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b863427b89","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b863427b89","updated":"2020-07-27T15:59:25.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b8623e5f02","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b8623e5f02","updated":"2020-07-27T15:59:25.000Z"},"relationships":{}},{"id":"10.70122/fk2/pt3gk6","type":"dois","attributes":{"doi":"10.70122/fk2/pt3gk6","updated":"2020-07-27T15:59:21.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85ddddc19","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85ddddc19","updated":"2020-07-27T15:59:20.000Z"},"relationships":{}},{"id":"10.70122/fk2/wptzxh/qyoqdd","type":"dois","attributes":{"doi":"10.70122/fk2/wptzxh/qyoqdd","updated":"2020-07-27T15:59:20.000Z"},"relationships":{}},{"id":"10.70122/fk2/pt3gk6/bvpiqs","type":"dois","attributes":{"doi":"10.70122/fk2/pt3gk6/bvpiqs","updated":"2020-07-27T15:59:19.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476426.r30198","type":"dois","attributes":{"doi":"10.5256/f1000research.476426.r30198","updated":"2020-07-27T15:59:18.000Z"},"relationships":{}},{"id":"10.70122/fk2/m0tzc0/2a1cs0","type":"dois","attributes":{"doi":"10.70122/fk2/m0tzc0/2a1cs0","updated":"2020-07-27T15:59:18.000Z"},"relationships":{}},{"id":"10.70122/fk2/xwcvnt","type":"dois","attributes":{"doi":"10.70122/fk2/xwcvnt","updated":"2020-07-27T15:59:17.000Z"},"relationships":{}},{"id":"10.70122/fk2/pt3gk6/zz6y12","type":"dois","attributes":{"doi":"10.70122/fk2/pt3gk6/zz6y12","updated":"2020-07-27T15:59:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/aef40i","type":"dois","attributes":{"doi":"10.70122/fk2/aef40i","updated":"2020-07-27T15:59:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/2rvoka/obyujg","type":"dois","attributes":{"doi":"10.70122/fk2/2rvoka/obyujg","updated":"2020-07-27T15:59:15.000Z"},"relationships":{}},{"id":"10.5256/f1000research.475686.r30087","type":"dois","attributes":{"doi":"10.5256/f1000research.475686.r30087","updated":"2020-07-27T15:59:14.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.885","type":"dois","attributes":{"doi":"10.5282/ubm/digi.885","updated":"2020-07-27T15:59:13.000Z"},"relationships":{}},{"id":"10.70122/fk2/zjew8r/vkk7l5","type":"dois","attributes":{"doi":"10.70122/fk2/zjew8r/vkk7l5","updated":"2020-07-27T15:59:12.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476414.r30195","type":"dois","attributes":{"doi":"10.5256/f1000research.476414.r30195","updated":"2020-07-27T15:59:11.000Z"},"relationships":{}},{"id":"10.70122/fk2/5u6wsf/kkutof","type":"dois","attributes":{"doi":"10.70122/fk2/5u6wsf/kkutof","updated":"2020-07-27T15:59:10.000Z"},"relationships":{}},{"id":"10.70122/fk2/h4dwvt/w7wrz3","type":"dois","attributes":{"doi":"10.70122/fk2/h4dwvt/w7wrz3","updated":"2020-07-27T15:59:10.000Z"},"relationships":{}},{"id":"10.21956/mniopenres.14032.r26454","type":"dois","attributes":{"doi":"10.21956/mniopenres.14032.r26454","updated":"2020-07-27T15:59:07.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.883","type":"dois","attributes":{"doi":"10.5282/ubm/digi.883","updated":"2020-07-27T15:59:06.000Z"},"relationships":{}},{"id":"10.70122/fk2/k7xyag/4jpquh","type":"dois","attributes":{"doi":"10.70122/fk2/k7xyag/4jpquh","updated":"2020-07-27T15:59:06.000Z"},"relationships":{}},{"id":"10.70122/fk2/gxlf6p","type":"dois","attributes":{"doi":"10.70122/fk2/gxlf6p","updated":"2020-07-27T15:59:04.000Z"},"relationships":{}},{"id":"10.17889/testdemo.eb.0508.1","type":"dois","attributes":{"doi":"10.17889/testdemo.eb.0508.1","updated":"2020-07-27T15:59:03.000Z"},"relationships":{}},{"id":"10.70122/fk2/wptzxh/xgx28q","type":"dois","attributes":{"doi":"10.70122/fk2/wptzxh/xgx28q","updated":"2020-07-27T15:59:00.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.922","type":"dois","attributes":{"doi":"10.5282/ubm/digi.922","updated":"2020-07-27T15:58:59.000Z"},"relationships":{}},{"id":"10.33522/a1wg-mbo5","type":"dois","attributes":{"doi":"10.33522/a1wg-mbo5","updated":"2020-07-27T15:58:58.000Z"},"relationships":{}},{"id":"10.33522/bpx5-nuuq","type":"dois","attributes":{"doi":"10.33522/bpx5-nuuq","updated":"2020-07-27T15:58:58.000Z"},"relationships":{}},{"id":"10.70122/fk2/nhvhgb/zaisz6","type":"dois","attributes":{"doi":"10.70122/fk2/nhvhgb/zaisz6","updated":"2020-07-27T15:58:58.000Z"},"relationships":{}},{"id":"10.33522/xnhj-r2fn","type":"dois","attributes":{"doi":"10.33522/xnhj-r2fn","updated":"2020-07-27T15:58:57.000Z"},"relationships":{}},{"id":"10.33522/xfyz-78ik","type":"dois","attributes":{"doi":"10.33522/xfyz-78ik","updated":"2020-07-27T15:58:56.000Z"},"relationships":{}},{"id":"10.33522/yxac-npo6","type":"dois","attributes":{"doi":"10.33522/yxac-npo6","updated":"2020-07-27T15:58:56.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476057.r30127","type":"dois","attributes":{"doi":"10.5256/f1000research.476057.r30127","updated":"2020-07-27T15:58:56.000Z"},"relationships":{}},{"id":"10.70122/fk2/2rvoka","type":"dois","attributes":{"doi":"10.70122/fk2/2rvoka","updated":"2020-07-27T15:58:54.000Z"},"relationships":{}},{"id":"10.33522/lptg-kdza","type":"dois","attributes":{"doi":"10.33522/lptg-kdza","updated":"2020-07-27T15:58:52.000Z"},"relationships":{}},{"id":"10.33522/l9ep-dcxl","type":"dois","attributes":{"doi":"10.33522/l9ep-dcxl","updated":"2020-07-27T15:58:52.000Z"},"relationships":{}},{"id":"10.33522/euul-rfyp","type":"dois","attributes":{"doi":"10.33522/euul-rfyp","updated":"2020-07-27T15:58:48.000Z"},"relationships":{}},{"id":"10.33522/l7ry-71ni","type":"dois","attributes":{"doi":"10.33522/l7ry-71ni","updated":"2020-07-27T15:58:47.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476058.r30131","type":"dois","attributes":{"doi":"10.5256/f1000research.476058.r30131","updated":"2020-07-27T15:58:45.000Z"},"relationships":{}},{"id":"10.33522/umcs-zhv5","type":"dois","attributes":{"doi":"10.33522/umcs-zhv5","updated":"2020-07-27T15:58:44.000Z"},"relationships":{}},{"id":"10.21956/aasopenres.14416.r26325","type":"dois","attributes":{"doi":"10.21956/aasopenres.14416.r26325","updated":"2020-07-27T15:58:39.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476057.r30125","type":"dois","attributes":{"doi":"10.5256/f1000research.476057.r30125","updated":"2020-07-27T15:58:39.000Z"},"relationships":{}},{"id":"10.33522/yhnu-bfik","type":"dois","attributes":{"doi":"10.33522/yhnu-bfik","updated":"2020-07-27T15:58:36.000Z"},"relationships":{}},{"id":"10.33522/vib4-e1df","type":"dois","attributes":{"doi":"10.33522/vib4-e1df","updated":"2020-07-27T15:58:34.000Z"},"relationships":{}},{"id":"10.33522/cne3-mgtn","type":"dois","attributes":{"doi":"10.33522/cne3-mgtn","updated":"2020-07-27T15:58:34.000Z"},"relationships":{}},{"id":"10.33522/zqio-wrqd","type":"dois","attributes":{"doi":"10.33522/zqio-wrqd","updated":"2020-07-27T15:58:32.000Z"},"relationships":{}},{"id":"10.33522/ezo8-wbzv","type":"dois","attributes":{"doi":"10.33522/ezo8-wbzv","updated":"2020-07-27T15:58:32.000Z"},"relationships":{}},{"id":"10.33522/amt6-0ny4","type":"dois","attributes":{"doi":"10.33522/amt6-0ny4","updated":"2020-07-27T15:58:31.000Z"},"relationships":{}},{"id":"10.33522/c6vo-utwy","type":"dois","attributes":{"doi":"10.33522/c6vo-utwy","updated":"2020-07-27T15:58:31.000Z"},"relationships":{}},{"id":"10.33522/vlen-osjk","type":"dois","attributes":{"doi":"10.33522/vlen-osjk","updated":"2020-07-27T15:58:30.000Z"},"relationships":{}},{"id":"10.33522/h4pv-8a0c","type":"dois","attributes":{"doi":"10.33522/h4pv-8a0c","updated":"2020-07-27T15:58:28.000Z"},"relationships":{}},{"id":"10.33522/kbjk-bzdg","type":"dois","attributes":{"doi":"10.33522/kbjk-bzdg","updated":"2020-07-27T15:58:27.000Z"},"relationships":{}},{"id":"10.33522/8gco-taxs","type":"dois","attributes":{"doi":"10.33522/8gco-taxs","updated":"2020-07-27T15:58:27.000Z"},"relationships":{}},{"id":"10.33522/dj4p-zj2j","type":"dois","attributes":{"doi":"10.33522/dj4p-zj2j","updated":"2020-07-27T15:58:26.000Z"},"relationships":{}},{"id":"10.33522/hule-xtzy","type":"dois","attributes":{"doi":"10.33522/hule-xtzy","updated":"2020-07-27T15:58:24.000Z"},"relationships":{}},{"id":"10.33522/wrtw-odin","type":"dois","attributes":{"doi":"10.33522/wrtw-odin","updated":"2020-07-27T15:58:24.000Z"},"relationships":{}},{"id":"10.33522/nfbv-rnqa","type":"dois","attributes":{"doi":"10.33522/nfbv-rnqa","updated":"2020-07-27T15:58:22.000Z"},"relationships":{}},{"id":"10.33522/vwdb-atg8","type":"dois","attributes":{"doi":"10.33522/vwdb-atg8","updated":"2020-07-27T15:58:22.000Z"},"relationships":{}},{"id":"10.33522/u6cy-7ykj","type":"dois","attributes":{"doi":"10.33522/u6cy-7ykj","updated":"2020-07-27T15:58:22.000Z"},"relationships":{}},{"id":"10.33522/boo6-2ala","type":"dois","attributes":{"doi":"10.33522/boo6-2ala","updated":"2020-07-27T15:58:20.000Z"},"relationships":{}},{"id":"10.33522/ryzj-500f","type":"dois","attributes":{"doi":"10.33522/ryzj-500f","updated":"2020-07-27T15:58:19.000Z"},"relationships":{}},{"id":"10.33522/x8bo-j09h","type":"dois","attributes":{"doi":"10.33522/x8bo-j09h","updated":"2020-07-27T15:58:18.000Z"},"relationships":{}},{"id":"10.33522/jdma-64rm","type":"dois","attributes":{"doi":"10.33522/jdma-64rm","updated":"2020-07-27T15:58:18.000Z"},"relationships":{}},{"id":"10.33522/ftwn-uxkp","type":"dois","attributes":{"doi":"10.33522/ftwn-uxkp","updated":"2020-07-27T15:58:18.000Z"},"relationships":{}},{"id":"10.33522/h8nt-7anr","type":"dois","attributes":{"doi":"10.33522/h8nt-7anr","updated":"2020-07-27T15:58:18.000Z"},"relationships":{}},{"id":"10.33522/cuvv-83rs","type":"dois","attributes":{"doi":"10.33522/cuvv-83rs","updated":"2020-07-27T15:58:17.000Z"},"relationships":{}},{"id":"10.33522/wmbh-uek8","type":"dois","attributes":{"doi":"10.33522/wmbh-uek8","updated":"2020-07-27T15:58:17.000Z"},"relationships":{}},{"id":"10.33522/mvvd-hjoc","type":"dois","attributes":{"doi":"10.33522/mvvd-hjoc","updated":"2020-07-27T15:58:16.000Z"},"relationships":{}},{"id":"10.33522/mqx8-4mio","type":"dois","attributes":{"doi":"10.33522/mqx8-4mio","updated":"2020-07-27T15:58:16.000Z"},"relationships":{}},{"id":"10.33522/jul9-63zt","type":"dois","attributes":{"doi":"10.33522/jul9-63zt","updated":"2020-07-27T15:58:15.000Z"},"relationships":{}},{"id":"10.33522/t5mt-ezkf","type":"dois","attributes":{"doi":"10.33522/t5mt-ezkf","updated":"2020-07-27T15:58:13.000Z"},"relationships":{}},{"id":"10.33522/whqa-6t7k","type":"dois","attributes":{"doi":"10.33522/whqa-6t7k","updated":"2020-07-27T15:58:12.000Z"},"relationships":{}},{"id":"10.33522/hubr-ws26","type":"dois","attributes":{"doi":"10.33522/hubr-ws26","updated":"2020-07-27T15:58:12.000Z"},"relationships":{}},{"id":"10.33522/vcbt-g9hf","type":"dois","attributes":{"doi":"10.33522/vcbt-g9hf","updated":"2020-07-27T15:58:11.000Z"},"relationships":{}},{"id":"10.33522/leah-ekkk","type":"dois","attributes":{"doi":"10.33522/leah-ekkk","updated":"2020-07-27T15:58:10.000Z"},"relationships":{}},{"id":"10.33522/zpz3-en1w","type":"dois","attributes":{"doi":"10.33522/zpz3-en1w","updated":"2020-07-27T15:58:09.000Z"},"relationships":{}},{"id":"10.33522/9uwq-szid","type":"dois","attributes":{"doi":"10.33522/9uwq-szid","updated":"2020-07-27T15:58:09.000Z"},"relationships":{}},{"id":"10.33522/kq9i-onq8","type":"dois","attributes":{"doi":"10.33522/kq9i-onq8","updated":"2020-07-27T15:58:08.000Z"},"relationships":{}},{"id":"10.33522/cyja-td6x","type":"dois","attributes":{"doi":"10.33522/cyja-td6x","updated":"2020-07-27T15:58:05.000Z"},"relationships":{}},{"id":"10.33522/zl7s-s18b","type":"dois","attributes":{"doi":"10.33522/zl7s-s18b","updated":"2020-07-27T15:58:05.000Z"},"relationships":{}},{"id":"10.33522/1yt4-p28y","type":"dois","attributes":{"doi":"10.33522/1yt4-p28y","updated":"2020-07-27T15:58:03.000Z"},"relationships":{}},{"id":"10.33522/1qlc-tkvf","type":"dois","attributes":{"doi":"10.33522/1qlc-tkvf","updated":"2020-07-27T15:58:03.000Z"},"relationships":{}},{"id":"10.33522/tdrp-daes","type":"dois","attributes":{"doi":"10.33522/tdrp-daes","updated":"2020-07-27T15:58:02.000Z"},"relationships":{}},{"id":"10.33522/mvdw-vbiz","type":"dois","attributes":{"doi":"10.33522/mvdw-vbiz","updated":"2020-07-27T15:58:02.000Z"},"relationships":{}},{"id":"10.33522/iupn-ia8t","type":"dois","attributes":{"doi":"10.33522/iupn-ia8t","updated":"2020-07-27T15:58:02.000Z"},"relationships":{}},{"id":"10.33522/w8qd-yxhz","type":"dois","attributes":{"doi":"10.33522/w8qd-yxhz","updated":"2020-07-27T15:58:01.000Z"},"relationships":{}},{"id":"10.33522/htpq-mj6y","type":"dois","attributes":{"doi":"10.33522/htpq-mj6y","updated":"2020-07-27T15:58:00.000Z"},"relationships":{}},{"id":"10.33522/a30i-ggdx","type":"dois","attributes":{"doi":"10.33522/a30i-ggdx","updated":"2020-07-27T15:57:58.000Z"},"relationships":{}},{"id":"10.33522/dih5-tznc","type":"dois","attributes":{"doi":"10.33522/dih5-tznc","updated":"2020-07-27T15:57:58.000Z"},"relationships":{}},{"id":"10.33522/g7l8-ff2r","type":"dois","attributes":{"doi":"10.33522/g7l8-ff2r","updated":"2020-07-27T15:57:57.000Z"},"relationships":{}},{"id":"10.33522/dmog-8nf4","type":"dois","attributes":{"doi":"10.33522/dmog-8nf4","updated":"2020-07-27T15:57:56.000Z"},"relationships":{}},{"id":"10.33522/hqwc-l8qu","type":"dois","attributes":{"doi":"10.33522/hqwc-l8qu","updated":"2020-07-27T15:57:54.000Z"},"relationships":{}},{"id":"10.33522/hyzy-wlwn","type":"dois","attributes":{"doi":"10.33522/hyzy-wlwn","updated":"2020-07-27T15:57:53.000Z"},"relationships":{}},{"id":"10.33522/myw0-cc0x","type":"dois","attributes":{"doi":"10.33522/myw0-cc0x","updated":"2020-07-27T15:57:53.000Z"},"relationships":{}},{"id":"10.33522/sibz-odzm","type":"dois","attributes":{"doi":"10.33522/sibz-odzm","updated":"2020-07-27T15:57:52.000Z"},"relationships":{}},{"id":"10.33522/uidy-2e1t","type":"dois","attributes":{"doi":"10.33522/uidy-2e1t","updated":"2020-07-27T15:57:51.000Z"},"relationships":{}},{"id":"10.33522/c15x-cubp","type":"dois","attributes":{"doi":"10.33522/c15x-cubp","updated":"2020-07-27T15:57:50.000Z"},"relationships":{}},{"id":"10.33522/ajrl-dt6q","type":"dois","attributes":{"doi":"10.33522/ajrl-dt6q","updated":"2020-07-27T15:57:50.000Z"},"relationships":{}},{"id":"10.33522/fskp-iytw","type":"dois","attributes":{"doi":"10.33522/fskp-iytw","updated":"2020-07-27T15:57:47.000Z"},"relationships":{}},{"id":"10.33522/taac-waec","type":"dois","attributes":{"doi":"10.33522/taac-waec","updated":"2020-07-27T15:57:47.000Z"},"relationships":{}},{"id":"10.33522/n2cv-mvcv","type":"dois","attributes":{"doi":"10.33522/n2cv-mvcv","updated":"2020-07-27T15:57:47.000Z"},"relationships":{}},{"id":"10.33522/5tot-6uo2","type":"dois","attributes":{"doi":"10.33522/5tot-6uo2","updated":"2020-07-27T15:57:46.000Z"},"relationships":{}},{"id":"10.33522/kauj-vmwt","type":"dois","attributes":{"doi":"10.33522/kauj-vmwt","updated":"2020-07-27T15:57:46.000Z"},"relationships":{}},{"id":"10.33522/u6ra-mge3","type":"dois","attributes":{"doi":"10.33522/u6ra-mge3","updated":"2020-07-27T15:57:46.000Z"},"relationships":{}},{"id":"10.33522/dg3i-jr0b","type":"dois","attributes":{"doi":"10.33522/dg3i-jr0b","updated":"2020-07-27T15:57:45.000Z"},"relationships":{}},{"id":"10.33522/inra-fjsi","type":"dois","attributes":{"doi":"10.33522/inra-fjsi","updated":"2020-07-27T15:57:45.000Z"},"relationships":{}},{"id":"10.33522/igdj-8fx3","type":"dois","attributes":{"doi":"10.33522/igdj-8fx3","updated":"2020-07-27T15:57:45.000Z"},"relationships":{}},{"id":"10.33522/rphy-mrsn","type":"dois","attributes":{"doi":"10.33522/rphy-mrsn","updated":"2020-07-27T15:57:44.000Z"},"relationships":{}},{"id":"10.33522/y64o-sd7m","type":"dois","attributes":{"doi":"10.33522/y64o-sd7m","updated":"2020-07-27T15:57:44.000Z"},"relationships":{}},{"id":"10.33522/4x9t-fwr3","type":"dois","attributes":{"doi":"10.33522/4x9t-fwr3","updated":"2020-07-27T15:57:43.000Z"},"relationships":{}},{"id":"10.33522/9xr7-xa1l","type":"dois","attributes":{"doi":"10.33522/9xr7-xa1l","updated":"2020-07-27T15:57:43.000Z"},"relationships":{}},{"id":"10.33522/uhe9-scui","type":"dois","attributes":{"doi":"10.33522/uhe9-scui","updated":"2020-07-27T15:57:42.000Z"},"relationships":{}},{"id":"10.33522/usjy-ttoh","type":"dois","attributes":{"doi":"10.33522/usjy-ttoh","updated":"2020-07-27T15:57:41.000Z"},"relationships":{}},{"id":"10.33522/mauf-evrv","type":"dois","attributes":{"doi":"10.33522/mauf-evrv","updated":"2020-07-27T15:57:41.000Z"},"relationships":{}},{"id":"10.33522/ar8c-mf6d","type":"dois","attributes":{"doi":"10.33522/ar8c-mf6d","updated":"2020-07-27T15:57:40.000Z"},"relationships":{}},{"id":"10.33522/dtzz-xrcs","type":"dois","attributes":{"doi":"10.33522/dtzz-xrcs","updated":"2020-07-27T15:57:38.000Z"},"relationships":{}},{"id":"10.33522/61jl-oo0e","type":"dois","attributes":{"doi":"10.33522/61jl-oo0e","updated":"2020-07-27T15:57:38.000Z"},"relationships":{}},{"id":"10.33522/6teo-andq","type":"dois","attributes":{"doi":"10.33522/6teo-andq","updated":"2020-07-27T15:57:38.000Z"},"relationships":{}},{"id":"10.33522/e5ij-4owi","type":"dois","attributes":{"doi":"10.33522/e5ij-4owi","updated":"2020-07-27T15:57:38.000Z"},"relationships":{}},{"id":"10.33522/p1nc-etai","type":"dois","attributes":{"doi":"10.33522/p1nc-etai","updated":"2020-07-27T15:57:37.000Z"},"relationships":{}},{"id":"10.33522/qxcw-hlim","type":"dois","attributes":{"doi":"10.33522/qxcw-hlim","updated":"2020-07-27T15:57:37.000Z"},"relationships":{}},{"id":"10.33522/sxbw-3twb","type":"dois","attributes":{"doi":"10.33522/sxbw-3twb","updated":"2020-07-27T15:57:37.000Z"},"relationships":{}},{"id":"10.33522/ml21-k8rg","type":"dois","attributes":{"doi":"10.33522/ml21-k8rg","updated":"2020-07-27T15:57:36.000Z"},"relationships":{}},{"id":"10.33522/ka63-p8v4","type":"dois","attributes":{"doi":"10.33522/ka63-p8v4","updated":"2020-07-27T15:57:36.000Z"},"relationships":{}},{"id":"10.33522/arfo-gqnv","type":"dois","attributes":{"doi":"10.33522/arfo-gqnv","updated":"2020-07-27T15:57:36.000Z"},"relationships":{}},{"id":"10.33522/j73t-7uhj","type":"dois","attributes":{"doi":"10.33522/j73t-7uhj","updated":"2020-07-27T15:57:36.000Z"},"relationships":{}},{"id":"10.33522/7a11-obwz","type":"dois","attributes":{"doi":"10.33522/7a11-obwz","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b874012eba","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b874012eba","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.33522/uysu-iqqz","type":"dois","attributes":{"doi":"10.33522/uysu-iqqz","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.5256/f1000research.475685.r30085","type":"dois","attributes":{"doi":"10.5256/f1000research.475685.r30085","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.33522/bxcr-e3ws","type":"dois","attributes":{"doi":"10.33522/bxcr-e3ws","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b874c45b04","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b874c45b04","updated":"2020-07-27T15:57:35.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b873c0fab0","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b873c0fab0","updated":"2020-07-27T15:57:34.000Z"},"relationships":{}},{"id":"10.33522/co3i-fcw2","type":"dois","attributes":{"doi":"10.33522/co3i-fcw2","updated":"2020-07-27T15:57:34.000Z"},"relationships":{}},{"id":"10.33522/t4gt-mvqb","type":"dois","attributes":{"doi":"10.33522/t4gt-mvqb","updated":"2020-07-27T15:57:34.000Z"},"relationships":{}},{"id":"10.33522/qfld-08cu","type":"dois","attributes":{"doi":"10.33522/qfld-08cu","updated":"2020-07-27T15:57:34.000Z"},"relationships":{}},{"id":"10.33522/mdbe-f6te","type":"dois","attributes":{"doi":"10.33522/mdbe-f6te","updated":"2020-07-27T15:57:34.000Z"},"relationships":{}},{"id":"10.33522/jtra-n6m6","type":"dois","attributes":{"doi":"10.33522/jtra-n6m6","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.33522/1jk0-rryr","type":"dois","attributes":{"doi":"10.33522/1jk0-rryr","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b8737ebc0c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b8737ebc0c","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.33522/5jpm-ncfs","type":"dois","attributes":{"doi":"10.33522/5jpm-ncfs","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.25601/23a09360-9c2b-43f3-9ecc-8c246b349079","type":"dois","attributes":{"doi":"10.25601/23a09360-9c2b-43f3-9ecc-8c246b349079","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.33522/ubw8-sbpn","type":"dois","attributes":{"doi":"10.33522/ubw8-sbpn","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.33522/pkbs-yur9","type":"dois","attributes":{"doi":"10.33522/pkbs-yur9","updated":"2020-07-27T15:57:33.000Z"},"relationships":{}},{"id":"10.33522/4yeu-ez08","type":"dois","attributes":{"doi":"10.33522/4yeu-ez08","updated":"2020-07-27T15:57:32.000Z"},"relationships":{}},{"id":"10.33522/zdol-yikn","type":"dois","attributes":{"doi":"10.33522/zdol-yikn","updated":"2020-07-27T15:57:32.000Z"},"relationships":{}},{"id":"10.33522/ucc5-9nfq","type":"dois","attributes":{"doi":"10.33522/ucc5-9nfq","updated":"2020-07-27T15:57:32.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b864b0422a","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b864b0422a","updated":"2020-07-27T15:57:31.000Z"},"relationships":{}},{"id":"10.33522/6nb8-5dbm","type":"dois","attributes":{"doi":"10.33522/6nb8-5dbm","updated":"2020-07-27T15:57:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b86f628c77","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b86f628c77","updated":"2020-07-27T15:57:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b86fc4f2d2","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b86fc4f2d2","updated":"2020-07-27T15:57:31.000Z"},"relationships":{}},{"id":"10.33522/slj2-l0sr","type":"dois","attributes":{"doi":"10.33522/slj2-l0sr","updated":"2020-07-27T15:57:30.000Z"},"relationships":{}},{"id":"10.33522/kf1u-i5ne","type":"dois","attributes":{"doi":"10.33522/kf1u-i5ne","updated":"2020-07-27T15:57:30.000Z"},"relationships":{}},{"id":"10.5256/f1000research.471873.r30084","type":"dois","attributes":{"doi":"10.5256/f1000research.471873.r30084","updated":"2020-07-27T15:57:30.000Z"},"relationships":{}},{"id":"10.33522/k5np-bryg","type":"dois","attributes":{"doi":"10.33522/k5np-bryg","updated":"2020-07-27T15:57:30.000Z"},"relationships":{}},{"id":"10.33522/gbeo-qkun","type":"dois","attributes":{"doi":"10.33522/gbeo-qkun","updated":"2020-07-27T15:57:29.000Z"},"relationships":{}},{"id":"10.33522/jiqv-iaxb","type":"dois","attributes":{"doi":"10.33522/jiqv-iaxb","updated":"2020-07-27T15:57:29.000Z"},"relationships":{}},{"id":"10.33522/vswe-rswf","type":"dois","attributes":{"doi":"10.33522/vswe-rswf","updated":"2020-07-27T15:57:29.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85e422164","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85e422164","updated":"2020-07-27T15:57:29.000Z"},"relationships":{}},{"id":"10.33522/iizw-ohfi","type":"dois","attributes":{"doi":"10.33522/iizw-ohfi","updated":"2020-07-27T15:57:29.000Z"},"relationships":{}},{"id":"10.33522/mtgm-op67","type":"dois","attributes":{"doi":"10.33522/mtgm-op67","updated":"2020-07-27T15:57:28.000Z"},"relationships":{}},{"id":"10.33522/spn6-yzcf","type":"dois","attributes":{"doi":"10.33522/spn6-yzcf","updated":"2020-07-27T15:57:28.000Z"},"relationships":{}},{"id":"10.33522/rsv4-cujt","type":"dois","attributes":{"doi":"10.33522/rsv4-cujt","updated":"2020-07-27T15:57:28.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2m3","type":"dois","attributes":{"doi":"10.15771/imejidev.2m3","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.70118/00001248","type":"dois","attributes":{"doi":"10.70118/00001248","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.33522/iojd-nhyr","type":"dois","attributes":{"doi":"10.33522/iojd-nhyr","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.70122/fk2/xwcvnt/vh1zyp","type":"dois","attributes":{"doi":"10.70122/fk2/xwcvnt/vh1zyp","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.33522/exvz-rdeu","type":"dois","attributes":{"doi":"10.33522/exvz-rdeu","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.70122/fk2/cvfkvt/7ln99j","type":"dois","attributes":{"doi":"10.70122/fk2/cvfkvt/7ln99j","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b861fcb164","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b861fcb164","updated":"2020-07-27T15:57:27.000Z"},"relationships":{}},{"id":"10.33522/lt3w-xg6b","type":"dois","attributes":{"doi":"10.33522/lt3w-xg6b","updated":"2020-07-27T15:57:26.000Z"},"relationships":{}},{"id":"10.33522/ewdh-l8np","type":"dois","attributes":{"doi":"10.33522/ewdh-l8np","updated":"2020-07-27T15:57:26.000Z"},"relationships":{}},{"id":"10.33522/37yr-bov1","type":"dois","attributes":{"doi":"10.33522/37yr-bov1","updated":"2020-07-27T15:57:25.000Z"},"relationships":{}},{"id":"10.33522/zbja-vicz","type":"dois","attributes":{"doi":"10.33522/zbja-vicz","updated":"2020-07-27T15:57:25.000Z"},"relationships":{}},{"id":"10.33522/2gof-pnk0","type":"dois","attributes":{"doi":"10.33522/2gof-pnk0","updated":"2020-07-27T15:57:25.000Z"},"relationships":{}},{"id":"10.33522/91h3-62lt","type":"dois","attributes":{"doi":"10.33522/91h3-62lt","updated":"2020-07-27T15:57:25.000Z"},"relationships":{}},{"id":"10.33522/2hpp-rvsy","type":"dois","attributes":{"doi":"10.33522/2hpp-rvsy","updated":"2020-07-27T15:57:24.000Z"},"relationships":{}},{"id":"10.33522/hmuh-r31w","type":"dois","attributes":{"doi":"10.33522/hmuh-r31w","updated":"2020-07-27T15:57:23.000Z"},"relationships":{}},{"id":"10.33522/7kcb-0egr","type":"dois","attributes":{"doi":"10.33522/7kcb-0egr","updated":"2020-07-27T15:57:21.000Z"},"relationships":{}},{"id":"10.70122/fk2/m0tzc0","type":"dois","attributes":{"doi":"10.70122/fk2/m0tzc0","updated":"2020-07-27T15:57:21.000Z"},"relationships":{}},{"id":"10.33522/u8hp-8h1p","type":"dois","attributes":{"doi":"10.33522/u8hp-8h1p","updated":"2020-07-27T15:57:21.000Z"},"relationships":{}},{"id":"10.70122/fk2/lfk3rd/havugw","type":"dois","attributes":{"doi":"10.70122/fk2/lfk3rd/havugw","updated":"2020-07-27T15:57:20.000Z"},"relationships":{}},{"id":"10.33522/4hyq-2xrl","type":"dois","attributes":{"doi":"10.33522/4hyq-2xrl","updated":"2020-07-27T15:57:20.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2m4","type":"dois","attributes":{"doi":"10.15771/imejidev.2m4","updated":"2020-07-27T15:57:17.000Z"},"relationships":{}},{"id":"10.70122/fk2/hlrkok/jbwk1k","type":"dois","attributes":{"doi":"10.70122/fk2/hlrkok/jbwk1k","updated":"2020-07-27T15:57:15.000Z"},"relationships":{}},{"id":"10.70122/fk2/ooozrr/kyiqt1","type":"dois","attributes":{"doi":"10.70122/fk2/ooozrr/kyiqt1","updated":"2020-07-27T15:57:14.000Z"},"relationships":{}},{"id":"10.70122/fk2/lgwrgy","type":"dois","attributes":{"doi":"10.70122/fk2/lgwrgy","updated":"2020-07-27T15:57:14.000Z"},"relationships":{}},{"id":"10.70122/fk2/nikpda/ywpq7g","type":"dois","attributes":{"doi":"10.70122/fk2/nikpda/ywpq7g","updated":"2020-07-27T15:57:13.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476426.r30197","type":"dois","attributes":{"doi":"10.5256/f1000research.476426.r30197","updated":"2020-07-27T15:57:12.000Z"},"relationships":{}},{"id":"10.70122/fk2/kputco/1uj5ba","type":"dois","attributes":{"doi":"10.70122/fk2/kputco/1uj5ba","updated":"2020-07-27T15:57:11.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c39f449d67","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c39f449d67","updated":"2020-07-27T15:57:11.000Z"},"relationships":{}},{"id":"10.70122/fk2/zjew8r/vjrqhw","type":"dois","attributes":{"doi":"10.70122/fk2/zjew8r/vjrqhw","updated":"2020-07-27T15:57:10.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c23080481a","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c23080481a","updated":"2020-07-27T15:57:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c22fd8e4ad","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c22fd8e4ad","updated":"2020-07-27T15:57:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c39fd0ce02","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c39fd0ce02","updated":"2020-07-27T15:57:09.000Z"},"relationships":{}},{"id":"10.33522/4gfc-ss5d","type":"dois","attributes":{"doi":"10.33522/4gfc-ss5d","updated":"2020-07-27T15:57:06.000Z"},"relationships":{}},{"id":"10.33522/tasx-gnmd","type":"dois","attributes":{"doi":"10.33522/tasx-gnmd","updated":"2020-07-27T15:57:06.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c217915fa7","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c217915fa7","updated":"2020-07-27T15:57:05.000Z"},"relationships":{}},{"id":"10.33522/8u5s-glqj","type":"dois","attributes":{"doi":"10.33522/8u5s-glqj","updated":"2020-07-27T15:57:05.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2310966f4","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2310966f4","updated":"2020-07-27T15:57:04.000Z"},"relationships":{}},{"id":"10.33522/vyou-somw","type":"dois","attributes":{"doi":"10.33522/vyou-somw","updated":"2020-07-27T15:57:04.000Z"},"relationships":{}},{"id":"10.33522/9rxs-fi2p","type":"dois","attributes":{"doi":"10.33522/9rxs-fi2p","updated":"2020-07-27T15:57:04.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2197c86f7","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2197c86f7","updated":"2020-07-27T15:57:04.000Z"},"relationships":{}},{"id":"10.33522/neio-uozg","type":"dois","attributes":{"doi":"10.33522/neio-uozg","updated":"2020-07-27T15:57:03.000Z"},"relationships":{}},{"id":"10.70122/fk2/tnjf3g","type":"dois","attributes":{"doi":"10.70122/fk2/tnjf3g","updated":"2020-07-27T15:57:03.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2t8","type":"dois","attributes":{"doi":"10.15771/imejidev.2t8","updated":"2020-07-27T15:57:03.000Z"},"relationships":{}},{"id":"10.33522/ivee-5zdg","type":"dois","attributes":{"doi":"10.33522/ivee-5zdg","updated":"2020-07-27T15:57:02.000Z"},"relationships":{}},{"id":"10.33522/qhdm-eghg","type":"dois","attributes":{"doi":"10.33522/qhdm-eghg","updated":"2020-07-27T15:57:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c217fca0f1","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c217fca0f1","updated":"2020-07-27T15:57:02.000Z"},"relationships":{}},{"id":"10.33522/e2wa-tlmu","type":"dois","attributes":{"doi":"10.33522/e2wa-tlmu","updated":"2020-07-27T15:57:01.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21ce4908c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21ce4908c","updated":"2020-07-27T15:57:01.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c232b2310b","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c232b2310b","updated":"2020-07-27T15:57:00.000Z"},"relationships":{}},{"id":"10.33522/zzks-raef","type":"dois","attributes":{"doi":"10.33522/zzks-raef","updated":"2020-07-27T15:57:00.000Z"},"relationships":{}},{"id":"10.33515/dspace-78","type":"dois","attributes":{"doi":"10.33515/dspace-78","updated":"2020-07-27T15:57:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c22f0b934b","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c22f0b934b","updated":"2020-07-27T15:56:59.000Z"},"relationships":{}},{"id":"10.70122/fk2/jorgku","type":"dois","attributes":{"doi":"10.70122/fk2/jorgku","updated":"2020-07-27T15:56:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c231612662","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c231612662","updated":"2020-07-27T15:56:59.000Z"},"relationships":{}},{"id":"10.33522/pnwr-gt6c","type":"dois","attributes":{"doi":"10.33522/pnwr-gt6c","updated":"2020-07-27T15:56:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2294c35b1","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2294c35b1","updated":"2020-07-27T15:56:58.000Z"},"relationships":{}},{"id":"10.33522/aetu-u0pw","type":"dois","attributes":{"doi":"10.33522/aetu-u0pw","updated":"2020-07-27T15:56:58.000Z"},"relationships":{}},{"id":"10.33522/d20e-1lzd","type":"dois","attributes":{"doi":"10.33522/d20e-1lzd","updated":"2020-07-27T15:56:58.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c22abe576c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c22abe576c","updated":"2020-07-27T15:56:58.000Z"},"relationships":{}},{"id":"10.33522/lkz5-r5ht","type":"dois","attributes":{"doi":"10.33522/lkz5-r5ht","updated":"2020-07-27T15:56:58.000Z"},"relationships":{}},{"id":"10.33522/j0c3-27n6","type":"dois","attributes":{"doi":"10.33522/j0c3-27n6","updated":"2020-07-27T15:56:57.000Z"},"relationships":{}},{"id":"10.70122/fk2/dwjoil","type":"dois","attributes":{"doi":"10.70122/fk2/dwjoil","updated":"2020-07-27T15:56:57.000Z"},"relationships":{}},{"id":"10.33522/esxy-ztrw","type":"dois","attributes":{"doi":"10.33522/esxy-ztrw","updated":"2020-07-27T15:56:56.000Z"},"relationships":{}},{"id":"10.33522/wzbo-xvgw","type":"dois","attributes":{"doi":"10.33522/wzbo-xvgw","updated":"2020-07-27T15:56:56.000Z"},"relationships":{}},{"id":"10.33522/99wc-fc7z","type":"dois","attributes":{"doi":"10.33522/99wc-fc7z","updated":"2020-07-27T15:56:56.000Z"},"relationships":{}},{"id":"10.33522/q0cg-5key","type":"dois","attributes":{"doi":"10.33522/q0cg-5key","updated":"2020-07-27T15:56:54.000Z"},"relationships":{}},{"id":"10.33522/l0wl-vrur","type":"dois","attributes":{"doi":"10.33522/l0wl-vrur","updated":"2020-07-27T15:56:53.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2ta","type":"dois","attributes":{"doi":"10.15771/imejidev.2ta","updated":"2020-07-27T15:56:52.000Z"},"relationships":{}},{"id":"10.33522/w549-tsub","type":"dois","attributes":{"doi":"10.33522/w549-tsub","updated":"2020-07-27T15:56:52.000Z"},"relationships":{}},{"id":"10.23705/d9t2624x","type":"dois","attributes":{"doi":"10.23705/d9t2624x","updated":"2020-07-27T15:56:51.000Z"},"relationships":{}},{"id":"10.70122/fk2/vrkqca","type":"dois","attributes":{"doi":"10.70122/fk2/vrkqca","updated":"2020-07-27T15:56:49.000Z"},"relationships":{}},{"id":"10.70122/fk2/tnjf3g/skrlrc","type":"dois","attributes":{"doi":"10.70122/fk2/tnjf3g/skrlrc","updated":"2020-07-27T15:56:49.000Z"},"relationships":{}},{"id":"10.70122/fk2/xhgj12","type":"dois","attributes":{"doi":"10.70122/fk2/xhgj12","updated":"2020-07-27T15:56:49.000Z"},"relationships":{}},{"id":"10.33522/s9l3-hnp9","type":"dois","attributes":{"doi":"10.33522/s9l3-hnp9","updated":"2020-07-27T15:56:48.000Z"},"relationships":{}},{"id":"10.70122/fk2/mdb7fx","type":"dois","attributes":{"doi":"10.70122/fk2/mdb7fx","updated":"2020-07-27T15:56:48.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21c6393fd","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21c6393fd","updated":"2020-07-27T15:56:48.000Z"},"relationships":{}},{"id":"10.33522/qpv9-juh9","type":"dois","attributes":{"doi":"10.33522/qpv9-juh9","updated":"2020-07-27T15:56:47.000Z"},"relationships":{}},{"id":"10.33522/hxo3-6mcv","type":"dois","attributes":{"doi":"10.33522/hxo3-6mcv","updated":"2020-07-27T15:56:46.000Z"},"relationships":{}},{"id":"10.70122/fk2/zb7gck","type":"dois","attributes":{"doi":"10.70122/fk2/zb7gck","updated":"2020-07-27T15:56:46.000Z"},"relationships":{}},{"id":"10.33522/h1bn-e01p","type":"dois","attributes":{"doi":"10.33522/h1bn-e01p","updated":"2020-07-27T15:56:46.000Z"},"relationships":{}},{"id":"10.33522/mnzz-mrtf","type":"dois","attributes":{"doi":"10.33522/mnzz-mrtf","updated":"2020-07-27T15:56:46.000Z"},"relationships":{}},{"id":"10.33522/emap-21iw","type":"dois","attributes":{"doi":"10.33522/emap-21iw","updated":"2020-07-27T15:56:45.000Z"},"relationships":{}},{"id":"10.33522/tpxp-a4yt","type":"dois","attributes":{"doi":"10.33522/tpxp-a4yt","updated":"2020-07-27T15:56:44.000Z"},"relationships":{}},{"id":"10.33522/lfdx-lq6j","type":"dois","attributes":{"doi":"10.33522/lfdx-lq6j","updated":"2020-07-27T15:56:44.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1cdc4786","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1cdc4786","updated":"2020-07-27T15:56:44.000Z"},"relationships":{}},{"id":"10.33522/uvem-oedk","type":"dois","attributes":{"doi":"10.33522/uvem-oedk","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.33522/6ov4-bbxs","type":"dois","attributes":{"doi":"10.33522/6ov4-bbxs","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.33522/mocz-0i8c","type":"dois","attributes":{"doi":"10.33522/mocz-0i8c","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2py","type":"dois","attributes":{"doi":"10.15771/imejidev.2py","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1d9c3305","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1d9c3305","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2q0","type":"dois","attributes":{"doi":"10.15771/imejidev.2q0","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dbf1919bce","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dbf1919bce","updated":"2020-07-27T15:56:43.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db0e1602c6","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db0e1602c6","updated":"2020-07-27T15:56:42.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6daf9254d31","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6daf9254d31","updated":"2020-07-27T15:56:42.000Z"},"relationships":{}},{"id":"10.33522/9aye-kfob","type":"dois","attributes":{"doi":"10.33522/9aye-kfob","updated":"2020-07-27T15:56:42.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2px","type":"dois","attributes":{"doi":"10.15771/imejidev.2px","updated":"2020-07-27T15:56:42.000Z"},"relationships":{}},{"id":"10.33522/gebk-afzu","type":"dois","attributes":{"doi":"10.33522/gebk-afzu","updated":"2020-07-27T15:56:40.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dae9b1b45f","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dae9b1b45f","updated":"2020-07-27T15:56:40.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db014e2243","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db014e2243","updated":"2020-07-27T15:56:40.000Z"},"relationships":{}},{"id":"10.33522/rigc-xqrz","type":"dois","attributes":{"doi":"10.33522/rigc-xqrz","updated":"2020-07-27T15:56:39.000Z"},"relationships":{}},{"id":"10.33522/cfjp-l4sn","type":"dois","attributes":{"doi":"10.33522/cfjp-l4sn","updated":"2020-07-27T15:56:39.000Z"},"relationships":{}},{"id":"10.33522/5blj-ndy3","type":"dois","attributes":{"doi":"10.33522/5blj-ndy3","updated":"2020-07-27T15:56:38.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6c7e41f3025","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6c7e41f3025","updated":"2020-07-27T15:56:36.000Z"},"relationships":{}},{"id":"10.33522/wzva-90cx","type":"dois","attributes":{"doi":"10.33522/wzva-90cx","updated":"2020-07-27T15:56:36.000Z"},"relationships":{}},{"id":"10.33522/hxhn-4xjl","type":"dois","attributes":{"doi":"10.33522/hxhn-4xjl","updated":"2020-07-27T15:56:35.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc662e183d","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc662e183d","updated":"2020-07-27T15:56:35.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc33ab068d","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc33ab068d","updated":"2020-07-27T15:56:34.000Z"},"relationships":{}},{"id":"10.7490/f1000research.1143391.1","type":"dois","attributes":{"doi":"10.7490/f1000research.1143391.1","updated":"2020-07-27T15:56:34.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b864592de5","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b864592de5","updated":"2020-07-27T15:56:34.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc336a247a","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc336a247a","updated":"2020-07-27T15:56:33.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc33e7365b","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc33e7365b","updated":"2020-07-27T15:56:33.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b870b4230c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b870b4230c","updated":"2020-07-27T15:56:33.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc6474512a","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc6474512a","updated":"2020-07-27T15:56:33.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6daf8690163","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6daf8690163","updated":"2020-07-27T15:56:32.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1c1ee7f0","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1c1ee7f0","updated":"2020-07-27T15:56:32.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dbf77eeccb","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dbf77eeccb","updated":"2020-07-27T15:56:32.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1ca17ad6","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1ca17ad6","updated":"2020-07-27T15:56:32.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db018b1873","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db018b1873","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.70122/fk2/akvl0t","type":"dois","attributes":{"doi":"10.70122/fk2/akvl0t","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1c64dc34","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1c64dc34","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.33522/73iv-hj46","type":"dois","attributes":{"doi":"10.33522/73iv-hj46","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pz","type":"dois","attributes":{"doi":"10.15771/imejidev.2pz","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db06ae9141","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db06ae9141","updated":"2020-07-27T15:56:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85da4fda4","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85da4fda4","updated":"2020-07-27T15:56:30.000Z"},"relationships":{}},{"id":"10.33522/zhdc-octk","type":"dois","attributes":{"doi":"10.33522/zhdc-octk","updated":"2020-07-27T15:56:30.000Z"},"relationships":{}},{"id":"10.70118/00001247","type":"dois","attributes":{"doi":"10.70118/00001247","updated":"2020-07-27T15:56:30.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b865f6866c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b865f6866c","updated":"2020-07-27T15:56:30.000Z"},"relationships":{}},{"id":"10.33522/52ui-2s9t","type":"dois","attributes":{"doi":"10.33522/52ui-2s9t","updated":"2020-07-27T15:56:30.000Z"},"relationships":{}},{"id":"10.33522/fisl-swww","type":"dois","attributes":{"doi":"10.33522/fisl-swww","updated":"2020-07-27T15:56:29.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pd","type":"dois","attributes":{"doi":"10.15771/imejidev.2pd","updated":"2020-07-27T15:56:28.000Z"},"relationships":{}},{"id":"10.33522/9wmr-f9yh","type":"dois","attributes":{"doi":"10.33522/9wmr-f9yh","updated":"2020-07-27T15:56:28.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6daf645906e","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6daf645906e","updated":"2020-07-27T15:56:27.000Z"},"relationships":{}},{"id":"10.70122/fk2/poihe4","type":"dois","attributes":{"doi":"10.70122/fk2/poihe4","updated":"2020-07-27T15:56:27.000Z"},"relationships":{}},{"id":"10.70122/fk2/kweuwf","type":"dois","attributes":{"doi":"10.70122/fk2/kweuwf","updated":"2020-07-27T15:56:27.000Z"},"relationships":{}},{"id":"10.33522/jtah-kxsx","type":"dois","attributes":{"doi":"10.33522/jtah-kxsx","updated":"2020-07-27T15:56:27.000Z"},"relationships":{}},{"id":"10.33522/ugyn-z3xb","type":"dois","attributes":{"doi":"10.33522/ugyn-z3xb","updated":"2020-07-27T15:56:26.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db01c7b6d0","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db01c7b6d0","updated":"2020-07-27T15:56:26.000Z"},"relationships":{}},{"id":"10.33522/2m4q-taqk","type":"dois","attributes":{"doi":"10.33522/2m4q-taqk","updated":"2020-07-27T15:56:26.000Z"},"relationships":{}},{"id":"10.33522/dofh-pmrf","type":"dois","attributes":{"doi":"10.33522/dofh-pmrf","updated":"2020-07-27T15:56:26.000Z"},"relationships":{}},{"id":"10.33522/xjfp-x7qz","type":"dois","attributes":{"doi":"10.33522/xjfp-x7qz","updated":"2020-07-27T15:56:25.000Z"},"relationships":{}},{"id":"10.70122/fk2/uh1a9b","type":"dois","attributes":{"doi":"10.70122/fk2/uh1a9b","updated":"2020-07-27T15:56:25.000Z"},"relationships":{}},{"id":"10.70122/fk2/lfk3rd/wrxleh","type":"dois","attributes":{"doi":"10.70122/fk2/lfk3rd/wrxleh","updated":"2020-07-27T15:56:24.000Z"},"relationships":{}},{"id":"10.70122/fk2/2rrlfp","type":"dois","attributes":{"doi":"10.70122/fk2/2rrlfp","updated":"2020-07-27T15:56:24.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6c7e495df4f","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6c7e495df4f","updated":"2020-07-27T15:56:24.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pr","type":"dois","attributes":{"doi":"10.15771/imejidev.2pr","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.25601/g299-v183","type":"dois","attributes":{"doi":"10.25601/g299-v183","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.33522/oipa-oqpk","type":"dois","attributes":{"doi":"10.33522/oipa-oqpk","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.70122/fk2/cd2qfu/0ipuat","type":"dois","attributes":{"doi":"10.70122/fk2/cd2qfu/0ipuat","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6c7e45d685c","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6c7e45d685c","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.0133/51703","type":"dois","attributes":{"doi":"10.0133/51703","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c13596343","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c13596343","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.70122/fk2/nikpda","type":"dois","attributes":{"doi":"10.70122/fk2/nikpda","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pp","type":"dois","attributes":{"doi":"10.15771/imejidev.2pp","updated":"2020-07-27T15:56:23.000Z"},"relationships":{}},{"id":"10.70122/fk2/t4ygbl/5qdmrw","type":"dois","attributes":{"doi":"10.70122/fk2/t4ygbl/5qdmrw","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pf","type":"dois","attributes":{"doi":"10.15771/imejidev.2pf","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.33522/3hfa-bvcj","type":"dois","attributes":{"doi":"10.33522/3hfa-bvcj","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70122/fk2/ua1jgn","type":"dois","attributes":{"doi":"10.70122/fk2/ua1jgn","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70122/fk2/gsl3dv/kt1vnz","type":"dois","attributes":{"doi":"10.70122/fk2/gsl3dv/kt1vnz","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70122/fk2/lfk3rd","type":"dois","attributes":{"doi":"10.70122/fk2/lfk3rd","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a3119c9d1","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a3119c9d1","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c0ed20d18","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c0ed20d18","updated":"2020-07-27T15:56:22.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a32f2fc52","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a32f2fc52","updated":"2020-07-27T15:56:21.000Z"},"relationships":{}},{"id":"10.70122/fk2/t4ygbl","type":"dois","attributes":{"doi":"10.70122/fk2/t4ygbl","updated":"2020-07-27T15:56:21.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d6c60bb1f908","type":"dois","attributes":{"doi":"10.70131/test_doi_5d6c60bb1f908","updated":"2020-07-27T15:56:20.000Z"},"relationships":{}},{"id":"10.33522/latf-jlae","type":"dois","attributes":{"doi":"10.33522/latf-jlae","updated":"2020-07-27T15:56:20.000Z"},"relationships":{}},{"id":"10.33522/y5ap-wsut","type":"dois","attributes":{"doi":"10.33522/y5ap-wsut","updated":"2020-07-27T15:56:20.000Z"},"relationships":{}},{"id":"10.70122/fk2/k7xyag","type":"dois","attributes":{"doi":"10.70122/fk2/k7xyag","updated":"2020-07-27T15:56:20.000Z"},"relationships":{}},{"id":"10.70122/fk2/rescgu/nqgcv4","type":"dois","attributes":{"doi":"10.70122/fk2/rescgu/nqgcv4","updated":"2020-07-27T15:56:20.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a334b3007","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a334b3007","updated":"2020-07-27T15:56:19.000Z"},"relationships":{}},{"id":"10.70122/fk2/kputco","type":"dois","attributes":{"doi":"10.70122/fk2/kputco","updated":"2020-07-27T15:56:19.000Z"},"relationships":{}},{"id":"10.70122/fk2/gvcn51/ktgyzp","type":"dois","attributes":{"doi":"10.70122/fk2/gvcn51/ktgyzp","updated":"2020-07-27T15:56:19.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a2c470efb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a2c470efb","updated":"2020-07-27T15:56:19.000Z"},"relationships":{}},{"id":"10.33522/ejjk-nuiz","type":"dois","attributes":{"doi":"10.33522/ejjk-nuiz","updated":"2020-07-27T15:56:18.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a7d73002","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a7d73002","updated":"2020-07-27T15:56:18.000Z"},"relationships":{}},{"id":"10.17889/e108248v1","type":"dois","attributes":{"doi":"10.17889/e108248v1","updated":"2020-07-27T15:56:17.000Z"},"relationships":{}},{"id":"10.70122/fk2/0d8css/vs3f4d","type":"dois","attributes":{"doi":"10.70122/fk2/0d8css/vs3f4d","updated":"2020-07-27T15:56:17.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a62d1d60","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a62d1d60","updated":"2020-07-27T15:56:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/zjew8r/cqj5w9","type":"dois","attributes":{"doi":"10.70122/fk2/zjew8r/cqj5w9","updated":"2020-07-27T15:56:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/zjew8r/tbnn5i","type":"dois","attributes":{"doi":"10.70122/fk2/zjew8r/tbnn5i","updated":"2020-07-27T15:56:16.000Z"},"relationships":{}},{"id":"10.33522/wphq-hl7r","type":"dois","attributes":{"doi":"10.33522/wphq-hl7r","updated":"2020-07-27T15:56:15.000Z"},"relationships":{}},{"id":"10.33522/ljpt-njdf","type":"dois","attributes":{"doi":"10.33522/ljpt-njdf","updated":"2020-07-27T15:56:15.000Z"},"relationships":{}},{"id":"10.33522/ppab-6nxj","type":"dois","attributes":{"doi":"10.33522/ppab-6nxj","updated":"2020-07-27T15:56:15.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a2ddeac02","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a2ddeac02","updated":"2020-07-27T15:56:15.000Z"},"relationships":{}},{"id":"10.33522/agp2-ni0f","type":"dois","attributes":{"doi":"10.33522/agp2-ni0f","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.33522/ihff-73ca","type":"dois","attributes":{"doi":"10.33522/ihff-73ca","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.33522/bngh-zool","type":"dois","attributes":{"doi":"10.33522/bngh-zool","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.33522/cysy-mxoi","type":"dois","attributes":{"doi":"10.33522/cysy-mxoi","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.33522/lsvf-qxr6","type":"dois","attributes":{"doi":"10.33522/lsvf-qxr6","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.25601/8d4637b4-d348-431c-831e-4b19804c2cad","type":"dois","attributes":{"doi":"10.25601/8d4637b4-d348-431c-831e-4b19804c2cad","updated":"2020-07-27T15:56:14.000Z"},"relationships":{}},{"id":"10.70122/fk2/5u6wsf","type":"dois","attributes":{"doi":"10.70122/fk2/5u6wsf","updated":"2020-07-27T15:56:13.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476058.r30132","type":"dois","attributes":{"doi":"10.5256/f1000research.476058.r30132","updated":"2020-07-27T15:56:13.000Z"},"relationships":{}},{"id":"10.5256/f1000research.469948.d365314","type":"dois","attributes":{"doi":"10.5256/f1000research.469948.d365314","updated":"2020-07-27T15:56:12.000Z"},"relationships":{}},{"id":"10.21956/aasopenres.14416.r26326","type":"dois","attributes":{"doi":"10.21956/aasopenres.14416.r26326","updated":"2020-07-27T15:56:12.000Z"},"relationships":{}},{"id":"10.33522/xhj9-pxkj","type":"dois","attributes":{"doi":"10.33522/xhj9-pxkj","updated":"2020-07-27T15:56:12.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c1717d455","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c1717d455","updated":"2020-07-27T15:56:12.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c13172c64","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c13172c64","updated":"2020-07-27T15:56:11.000Z"},"relationships":{}},{"id":"10.70122/fk2/zjew8r","type":"dois","attributes":{"doi":"10.70122/fk2/zjew8r","updated":"2020-07-27T15:56:11.000Z"},"relationships":{}},{"id":"10.17894/fk2/kkebfa/alkemm","type":"dois","attributes":{"doi":"10.17894/fk2/kkebfa/alkemm","updated":"2020-07-27T15:56:11.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476057.r30126","type":"dois","attributes":{"doi":"10.5256/f1000research.476057.r30126","updated":"2020-07-27T15:56:10.000Z"},"relationships":{}},{"id":"10.33522/qwxd-mzpj","type":"dois","attributes":{"doi":"10.33522/qwxd-mzpj","updated":"2020-07-27T15:56:10.000Z"},"relationships":{}},{"id":"10.33522/3bgd-q87i","type":"dois","attributes":{"doi":"10.33522/3bgd-q87i","updated":"2020-07-27T15:56:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c0ff7bb1e","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c0ff7bb1e","updated":"2020-07-27T15:56:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c0e6743e9","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c0e6743e9","updated":"2020-07-27T15:56:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c13f11823","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c13f11823","updated":"2020-07-27T15:56:09.000Z"},"relationships":{}},{"id":"10.33522/bzlz-xsba","type":"dois","attributes":{"doi":"10.33522/bzlz-xsba","updated":"2020-07-27T15:56:08.000Z"},"relationships":{}},{"id":"10.33522/ofbu-afeq","type":"dois","attributes":{"doi":"10.33522/ofbu-afeq","updated":"2020-07-27T15:56:08.000Z"},"relationships":{}},{"id":"10.33522/spke-wrel","type":"dois","attributes":{"doi":"10.33522/spke-wrel","updated":"2020-07-27T15:56:08.000Z"},"relationships":{}},{"id":"10.33522/awwx-wxir","type":"dois","attributes":{"doi":"10.33522/awwx-wxir","updated":"2020-07-27T15:56:07.000Z"},"relationships":{}},{"id":"10.33522/ampp-jnze","type":"dois","attributes":{"doi":"10.33522/ampp-jnze","updated":"2020-07-27T15:56:07.000Z"},"relationships":{}},{"id":"10.33522/aagx-xugf","type":"dois","attributes":{"doi":"10.33522/aagx-xugf","updated":"2020-07-27T15:56:07.000Z"},"relationships":{}},{"id":"10.33522/wpk7-pbe6","type":"dois","attributes":{"doi":"10.33522/wpk7-pbe6","updated":"2020-07-27T15:56:05.000Z"},"relationships":{}},{"id":"10.33522/keqv-lujf","type":"dois","attributes":{"doi":"10.33522/keqv-lujf","updated":"2020-07-27T15:56:05.000Z"},"relationships":{}},{"id":"10.33522/x3kp-vofh","type":"dois","attributes":{"doi":"10.33522/x3kp-vofh","updated":"2020-07-27T15:56:05.000Z"},"relationships":{}},{"id":"10.33522/cjex-jryy","type":"dois","attributes":{"doi":"10.33522/cjex-jryy","updated":"2020-07-27T15:56:05.000Z"},"relationships":{}},{"id":"10.33522/z4ik-1htf","type":"dois","attributes":{"doi":"10.33522/z4ik-1htf","updated":"2020-07-27T15:56:05.000Z"},"relationships":{}},{"id":"10.33522/ybx5-fmmc","type":"dois","attributes":{"doi":"10.33522/ybx5-fmmc","updated":"2020-07-27T15:56:04.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a2bdb142c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a2bdb142c","updated":"2020-07-27T15:56:04.000Z"},"relationships":{}},{"id":"10.33522/hsal-8l2k","type":"dois","attributes":{"doi":"10.33522/hsal-8l2k","updated":"2020-07-27T15:56:04.000Z"},"relationships":{}},{"id":"10.33522/tzk6-hwhd","type":"dois","attributes":{"doi":"10.33522/tzk6-hwhd","updated":"2020-07-27T15:56:03.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a30d66d6d","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a30d66d6d","updated":"2020-07-27T15:56:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a0bd9553","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a0bd9553","updated":"2020-07-27T15:56:02.000Z"},"relationships":{}},{"id":"10.33522/wgvt-liiv","type":"dois","attributes":{"doi":"10.33522/wgvt-liiv","updated":"2020-07-27T15:56:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a3db0489","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a3db0489","updated":"2020-07-27T15:56:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d6899f726cc8","type":"dois","attributes":{"doi":"10.70131/test_doi_5d6899f726cc8","updated":"2020-07-27T15:56:02.000Z"},"relationships":{}},{"id":"10.33522/8xan-tylo","type":"dois","attributes":{"doi":"10.33522/8xan-tylo","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.33522/cvh0-6lm4","type":"dois","attributes":{"doi":"10.33522/cvh0-6lm4","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.33522/nyf3-lxko","type":"dois","attributes":{"doi":"10.33522/nyf3-lxko","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2oi","type":"dois","attributes":{"doi":"10.15771/imejidev.2oi","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.33522/m5f0-nbst","type":"dois","attributes":{"doi":"10.33522/m5f0-nbst","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a5a3f042","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a5a3f042","updated":"2020-07-27T15:56:01.000Z"},"relationships":{}},{"id":"10.33522/cfou-jpvj","type":"dois","attributes":{"doi":"10.33522/cfou-jpvj","updated":"2020-07-27T15:56:00.000Z"},"relationships":{}},{"id":"10.33522/82lt-ytxk","type":"dois","attributes":{"doi":"10.33522/82lt-ytxk","updated":"2020-07-27T15:55:59.000Z"},"relationships":{}},{"id":"10.33522/ksbf-psco","type":"dois","attributes":{"doi":"10.33522/ksbf-psco","updated":"2020-07-27T15:55:59.000Z"},"relationships":{}},{"id":"10.33522/ikwf-s8xm","type":"dois","attributes":{"doi":"10.33522/ikwf-s8xm","updated":"2020-07-27T15:55:59.000Z"},"relationships":{}},{"id":"10.33522/gonj-tpkh","type":"dois","attributes":{"doi":"10.33522/gonj-tpkh","updated":"2020-07-27T15:55:58.000Z"},"relationships":{}},{"id":"10.33522/tcvz-yob6","type":"dois","attributes":{"doi":"10.33522/tcvz-yob6","updated":"2020-07-27T15:55:57.000Z"},"relationships":{}},{"id":"10.17889/e108272","type":"dois","attributes":{"doi":"10.17889/e108272","updated":"2020-07-27T15:55:57.000Z"},"relationships":{}},{"id":"10.33522/6cz2-2tho","type":"dois","attributes":{"doi":"10.33522/6cz2-2tho","updated":"2020-07-27T15:55:56.000Z"},"relationships":{}},{"id":"10.33522/jeds-vfl7","type":"dois","attributes":{"doi":"10.33522/jeds-vfl7","updated":"2020-07-27T15:55:55.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2oe","type":"dois","attributes":{"doi":"10.15771/imejidev.2oe","updated":"2020-07-27T15:55:54.000Z"},"relationships":{}},{"id":"10.33522/olhp-wo5p","type":"dois","attributes":{"doi":"10.33522/olhp-wo5p","updated":"2020-07-27T15:55:52.000Z"},"relationships":{}},{"id":"10.33522/cag2-nrjn","type":"dois","attributes":{"doi":"10.33522/cag2-nrjn","updated":"2020-07-27T15:55:51.000Z"},"relationships":{}},{"id":"10.33522/qkjw-kdrz","type":"dois","attributes":{"doi":"10.33522/qkjw-kdrz","updated":"2020-07-27T15:55:51.000Z"},"relationships":{}},{"id":"10.70112/e2h01w/oszhgz","type":"dois","attributes":{"doi":"10.70112/e2h01w/oszhgz","updated":"2020-07-27T15:55:51.000Z"},"relationships":{}},{"id":"10.33522/lixu-c23m","type":"dois","attributes":{"doi":"10.33522/lixu-c23m","updated":"2020-07-27T15:55:51.000Z"},"relationships":{}},{"id":"10.33522/vzrt-mjt5","type":"dois","attributes":{"doi":"10.33522/vzrt-mjt5","updated":"2020-07-27T15:55:50.000Z"},"relationships":{}},{"id":"10.17889/e113033v1","type":"dois","attributes":{"doi":"10.17889/e113033v1","updated":"2020-07-27T15:55:50.000Z"},"relationships":{}},{"id":"10.17889/e112705v1","type":"dois","attributes":{"doi":"10.17889/e112705v1","updated":"2020-07-27T15:55:50.000Z"},"relationships":{}},{"id":"10.33522/bh3r-azof","type":"dois","attributes":{"doi":"10.33522/bh3r-azof","updated":"2020-07-27T15:55:49.000Z"},"relationships":{}},{"id":"10.17889/e112706v1","type":"dois","attributes":{"doi":"10.17889/e112706v1","updated":"2020-07-27T15:55:49.000Z"},"relationships":{}},{"id":"10.33522/9ldg-9ib4","type":"dois","attributes":{"doi":"10.33522/9ldg-9ib4","updated":"2020-07-27T15:55:48.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2oc","type":"dois","attributes":{"doi":"10.15771/imejidev.2oc","updated":"2020-07-27T15:55:47.000Z"},"relationships":{}},{"id":"10.33522/dw3v-bjhn","type":"dois","attributes":{"doi":"10.33522/dw3v-bjhn","updated":"2020-07-27T15:55:47.000Z"},"relationships":{}},{"id":"10.33522/isww-2bpk","type":"dois","attributes":{"doi":"10.33522/isww-2bpk","updated":"2020-07-27T15:55:46.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2mm","type":"dois","attributes":{"doi":"10.15771/imejidev.2mm","updated":"2020-07-27T15:55:44.000Z"},"relationships":{}},{"id":"10.33522/usx9-qgty","type":"dois","attributes":{"doi":"10.33522/usx9-qgty","updated":"2020-07-27T15:55:44.000Z"},"relationships":{}},{"id":"10.33522/1ezk-khrp","type":"dois","attributes":{"doi":"10.33522/1ezk-khrp","updated":"2020-07-27T15:55:44.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d50a73f26370","type":"dois","attributes":{"doi":"10.24428/test_doi_5d50a73f26370","updated":"2020-07-27T15:55:44.000Z"},"relationships":{}},{"id":"10.33522/endg-gucw","type":"dois","attributes":{"doi":"10.33522/endg-gucw","updated":"2020-07-27T15:55:43.000Z"},"relationships":{}},{"id":"10.33522/gtc5-4vpn","type":"dois","attributes":{"doi":"10.33522/gtc5-4vpn","updated":"2020-07-27T15:55:43.000Z"},"relationships":{}},{"id":"10.5256/f1000research.485165.r30966","type":"dois","attributes":{"doi":"10.5256/f1000research.485165.r30966","updated":"2020-07-27T15:55:42.000Z"},"relationships":{}},{"id":"10.33522/afva-eprw","type":"dois","attributes":{"doi":"10.33522/afva-eprw","updated":"2020-07-27T15:55:42.000Z"},"relationships":{}},{"id":"10.33522/7cz9-z43n","type":"dois","attributes":{"doi":"10.33522/7cz9-z43n","updated":"2020-07-27T15:55:41.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b0844096","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b0844096","updated":"2020-07-27T15:55:40.000Z"},"relationships":{}},{"id":"10.33522/6ks5-ghk4","type":"dois","attributes":{"doi":"10.33522/6ks5-ghk4","updated":"2020-07-27T15:55:40.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b7f1e322","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b7f1e322","updated":"2020-07-27T15:55:40.000Z"},"relationships":{}},{"id":"10.33522/um3o-xy9y","type":"dois","attributes":{"doi":"10.33522/um3o-xy9y","updated":"2020-07-27T15:55:39.000Z"},"relationships":{}},{"id":"10.70112/57wfl4","type":"dois","attributes":{"doi":"10.70112/57wfl4","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2ml","type":"dois","attributes":{"doi":"10.15771/imejidev.2ml","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.33522/xxpb-maca","type":"dois","attributes":{"doi":"10.33522/xxpb-maca","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c229d0e4da","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c229d0e4da","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3af53aea5","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3af53aea5","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b4e4426a","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b4e4426a","updated":"2020-07-27T15:55:38.000Z"},"relationships":{}},{"id":"10.70122/fk2/dpr37i","type":"dois","attributes":{"doi":"10.70122/fk2/dpr37i","updated":"2020-07-27T15:55:37.000Z"},"relationships":{}},{"id":"10.33522/e5tm-cem4","type":"dois","attributes":{"doi":"10.33522/e5tm-cem4","updated":"2020-07-27T15:55:37.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2mk","type":"dois","attributes":{"doi":"10.15771/imejidev.2mk","updated":"2020-07-27T15:55:37.000Z"},"relationships":{}},{"id":"10.70018/jpss-dg82","type":"dois","attributes":{"doi":"10.70018/jpss-dg82","updated":"2020-07-27T15:55:37.000Z"},"relationships":{}},{"id":"10.33522/ql9g-cemq","type":"dois","attributes":{"doi":"10.33522/ql9g-cemq","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21ebd4d4e","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21ebd4d4e","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.33522/goku-hafb","type":"dois","attributes":{"doi":"10.33522/goku-hafb","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.33522/vmev-i6fe","type":"dois","attributes":{"doi":"10.33522/vmev-i6fe","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c229a17112","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c229a17112","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2182b6637","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2182b6637","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21e308de6","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21e308de6","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2291a301a","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2291a301a","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c219153c72","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c219153c72","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21ca4ac52","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21ca4ac52","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c21d3b49b2","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c21d3b49b2","updated":"2020-07-27T15:55:36.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c217c83f43","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c217c83f43","updated":"2020-07-27T15:55:35.000Z"},"relationships":{}},{"id":"10.33522/xqog-qlfu","type":"dois","attributes":{"doi":"10.33522/xqog-qlfu","updated":"2020-07-27T15:55:35.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.991","type":"dois","attributes":{"doi":"10.5282/ubm/digi.991","updated":"2020-07-27T15:55:34.000Z"},"relationships":{}},{"id":"10.70112/pp4d5l","type":"dois","attributes":{"doi":"10.70112/pp4d5l","updated":"2020-07-27T15:55:34.000Z"},"relationships":{}},{"id":"10.70112/57wfl4/uhhjcd","type":"dois","attributes":{"doi":"10.70112/57wfl4/uhhjcd","updated":"2020-07-27T15:55:34.000Z"},"relationships":{}},{"id":"10.70112/6wnt6u/c3xmn0","type":"dois","attributes":{"doi":"10.70112/6wnt6u/c3xmn0","updated":"2020-07-27T15:55:34.000Z"},"relationships":{}},{"id":"10.33522/pbtu-vdqx","type":"dois","attributes":{"doi":"10.33522/pbtu-vdqx","updated":"2020-07-27T15:55:33.000Z"},"relationships":{}},{"id":"10.33522/xcro-cr7c","type":"dois","attributes":{"doi":"10.33522/xcro-cr7c","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.17889/e108361v1","type":"dois","attributes":{"doi":"10.17889/e108361v1","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.33522/r0nj-ktl0","type":"dois","attributes":{"doi":"10.33522/r0nj-ktl0","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.70112/6wnt6u/vlfqx3","type":"dois","attributes":{"doi":"10.70112/6wnt6u/vlfqx3","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.33522/qpoj-iqjy","type":"dois","attributes":{"doi":"10.33522/qpoj-iqjy","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.70122/fk2/sudzt1/trcxpm","type":"dois","attributes":{"doi":"10.70122/fk2/sudzt1/trcxpm","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.33522/slvg-pyuo","type":"dois","attributes":{"doi":"10.33522/slvg-pyuo","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.33522/djeg-so0j","type":"dois","attributes":{"doi":"10.33522/djeg-so0j","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.70122/fk2/dpr37i/qps1re","type":"dois","attributes":{"doi":"10.70122/fk2/dpr37i/qps1re","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.5256/f1000research.476572.r30219","type":"dois","attributes":{"doi":"10.5256/f1000research.476572.r30219","updated":"2020-07-27T15:55:32.000Z"},"relationships":{}},{"id":"10.33522/c2ub-nft9","type":"dois","attributes":{"doi":"10.33522/c2ub-nft9","updated":"2020-07-27T15:55:31.000Z"},"relationships":{}},{"id":"10.33522/y9h7-fqeu","type":"dois","attributes":{"doi":"10.33522/y9h7-fqeu","updated":"2020-07-27T15:55:31.000Z"},"relationships":{}},{"id":"10.33522/2glg-m3hp","type":"dois","attributes":{"doi":"10.33522/2glg-m3hp","updated":"2020-07-27T15:55:31.000Z"},"relationships":{}},{"id":"10.33522/e74z-mhx4","type":"dois","attributes":{"doi":"10.33522/e74z-mhx4","updated":"2020-07-27T15:55:31.000Z"},"relationships":{}},{"id":"10.70018/sng5-yf06","type":"dois","attributes":{"doi":"10.70018/sng5-yf06","updated":"2020-07-27T15:55:31.000Z"},"relationships":{}},{"id":"10.70018/3t8m-rs87","type":"dois","attributes":{"doi":"10.70018/3t8m-rs87","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.33522/e9jd-rt6t","type":"dois","attributes":{"doi":"10.33522/e9jd-rt6t","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.33522/ntvi-cjvl","type":"dois","attributes":{"doi":"10.33522/ntvi-cjvl","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b87789568c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b87789568c","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.70018/ddtq-0e03","type":"dois","attributes":{"doi":"10.70018/ddtq-0e03","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.70018/08b4-k016","type":"dois","attributes":{"doi":"10.70018/08b4-k016","updated":"2020-07-27T15:55:30.000Z"},"relationships":{}},{"id":"10.33522/gdob-pdzt","type":"dois","attributes":{"doi":"10.33522/gdob-pdzt","updated":"2020-07-27T15:55:29.000Z"},"relationships":{}},{"id":"10.33522/igwl-hitn","type":"dois","attributes":{"doi":"10.33522/igwl-hitn","updated":"2020-07-27T15:55:29.000Z"},"relationships":{}},{"id":"10.33522/0xji-pth3","type":"dois","attributes":{"doi":"10.33522/0xji-pth3","updated":"2020-07-27T15:55:29.000Z"},"relationships":{}},{"id":"10.33522/5mvg-lpqf","type":"dois","attributes":{"doi":"10.33522/5mvg-lpqf","updated":"2020-07-27T15:55:29.000Z"},"relationships":{}},{"id":"10.33522/7yad-xivr","type":"dois","attributes":{"doi":"10.33522/7yad-xivr","updated":"2020-07-27T15:55:29.000Z"},"relationships":{}},{"id":"10.5256/f1000research.470434.d366246","type":"dois","attributes":{"doi":"10.5256/f1000research.470434.d366246","updated":"2020-07-27T15:55:28.000Z"},"relationships":{}},{"id":"10.70122/fk2/44oflo","type":"dois","attributes":{"doi":"10.70122/fk2/44oflo","updated":"2020-07-27T15:55:28.000Z"},"relationships":{}},{"id":"10.33522/ifav-c8w6","type":"dois","attributes":{"doi":"10.33522/ifav-c8w6","updated":"2020-07-27T15:55:28.000Z"},"relationships":{}},{"id":"10.5256/f1000research.97975.r30213","type":"dois","attributes":{"doi":"10.5256/f1000research.97975.r30213","updated":"2020-07-27T15:55:28.000Z"},"relationships":{}},{"id":"10.33522/qwjb-xn33","type":"dois","attributes":{"doi":"10.33522/qwjb-xn33","updated":"2020-07-27T15:55:27.000Z"},"relationships":{}},{"id":"10.33522/3cvk-8wal","type":"dois","attributes":{"doi":"10.33522/3cvk-8wal","updated":"2020-07-27T15:55:27.000Z"},"relationships":{}},{"id":"10.0133/10000404","type":"dois","attributes":{"doi":"10.0133/10000404","updated":"2020-07-27T15:55:27.000Z"},"relationships":{}},{"id":"10.70112/6wnt6u/lhl4cw","type":"dois","attributes":{"doi":"10.70112/6wnt6u/lhl4cw","updated":"2020-07-27T15:55:27.000Z"},"relationships":{}},{"id":"10.17889/2324.6","type":"dois","attributes":{"doi":"10.17889/2324.6","updated":"2020-07-27T15:55:27.000Z"},"relationships":{}},{"id":"10.21956/aasopenres.14426.r26331","type":"dois","attributes":{"doi":"10.21956/aasopenres.14426.r26331","updated":"2020-07-27T15:55:26.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b875d6ce7b","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b875d6ce7b","updated":"2020-07-27T15:55:26.000Z"},"relationships":{}},{"id":"10.7965/b9afuivz","type":"dois","attributes":{"doi":"10.7965/b9afuivz","updated":"2020-07-27T15:55:26.000Z"},"relationships":{}},{"id":"10.25601/s22v-6w39","type":"dois","attributes":{"doi":"10.25601/s22v-6w39","updated":"2020-07-27T15:55:26.000Z"},"relationships":{}},{"id":"10.33522/wpro-untp","type":"dois","attributes":{"doi":"10.33522/wpro-untp","updated":"2020-07-27T15:55:25.000Z"},"relationships":{}},{"id":"10.33522/wvf5-cvcy","type":"dois","attributes":{"doi":"10.33522/wvf5-cvcy","updated":"2020-07-27T15:55:25.000Z"},"relationships":{}},{"id":"10.25601/xy1d-xc98","type":"dois","attributes":{"doi":"10.25601/xy1d-xc98","updated":"2020-07-27T15:55:25.000Z"},"relationships":{}},{"id":"10.70112/6wnt6u/s8tm43","type":"dois","attributes":{"doi":"10.70112/6wnt6u/s8tm43","updated":"2020-07-27T15:55:25.000Z"},"relationships":{}},{"id":"10.33522/dprx-4mlj","type":"dois","attributes":{"doi":"10.33522/dprx-4mlj","updated":"2020-07-27T15:55:24.000Z"},"relationships":{}},{"id":"10.33522/4vqa-9if7","type":"dois","attributes":{"doi":"10.33522/4vqa-9if7","updated":"2020-07-27T15:55:23.000Z"},"relationships":{}},{"id":"10.25601/gb9n-k090","type":"dois","attributes":{"doi":"10.25601/gb9n-k090","updated":"2020-07-27T15:55:23.000Z"},"relationships":{}},{"id":"10.70018/de9n-4g68","type":"dois","attributes":{"doi":"10.70018/de9n-4g68","updated":"2020-07-27T15:55:22.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b8754df7cf","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b8754df7cf","updated":"2020-07-27T15:55:22.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.923","type":"dois","attributes":{"doi":"10.5282/ubm/digi.923","updated":"2020-07-27T15:55:21.000Z"},"relationships":{}},{"id":"10.33522/agso-tcf7","type":"dois","attributes":{"doi":"10.33522/agso-tcf7","updated":"2020-07-27T15:55:19.000Z"},"relationships":{}},{"id":"10.33522/aljt-bzex","type":"dois","attributes":{"doi":"10.33522/aljt-bzex","updated":"2020-07-27T15:55:18.000Z"},"relationships":{}},{"id":"10.33522/ychz-eetb","type":"dois","attributes":{"doi":"10.33522/ychz-eetb","updated":"2020-07-27T15:55:18.000Z"},"relationships":{}},{"id":"10.33522/yuvv-4or6","type":"dois","attributes":{"doi":"10.33522/yuvv-4or6","updated":"2020-07-27T15:55:18.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc1dd86e65","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc1dd86e65","updated":"2020-07-27T15:55:16.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6db010e3289","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6db010e3289","updated":"2020-07-27T15:55:16.000Z"},"relationships":{}},{"id":"10.33522/q7t0-yiwh","type":"dois","attributes":{"doi":"10.33522/q7t0-yiwh","updated":"2020-07-27T15:55:16.000Z"},"relationships":{}},{"id":"10.33522/ybtc-hi0d","type":"dois","attributes":{"doi":"10.33522/ybtc-hi0d","updated":"2020-07-27T15:55:15.000Z"},"relationships":{}},{"id":"10.33522/1yav-4x3n","type":"dois","attributes":{"doi":"10.33522/1yav-4x3n","updated":"2020-07-27T15:55:15.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6c78b785cbf","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6c78b785cbf","updated":"2020-07-27T15:55:13.000Z"},"relationships":{}},{"id":"10.33522/tjf9-81fz","type":"dois","attributes":{"doi":"10.33522/tjf9-81fz","updated":"2020-07-27T15:55:13.000Z"},"relationships":{}},{"id":"10.7490/f1000research.1143392.1","type":"dois","attributes":{"doi":"10.7490/f1000research.1143392.1","updated":"2020-07-27T15:55:13.000Z"},"relationships":{}},{"id":"10.33522/otwo-rqpm","type":"dois","attributes":{"doi":"10.33522/otwo-rqpm","updated":"2020-07-27T15:55:12.000Z"},"relationships":{}},{"id":"10.33522/wjco-c9u1","type":"dois","attributes":{"doi":"10.33522/wjco-c9u1","updated":"2020-07-27T15:55:11.000Z"},"relationships":{}},{"id":"10.33522/mgo6-ggzb","type":"dois","attributes":{"doi":"10.33522/mgo6-ggzb","updated":"2020-07-27T15:55:11.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2pg","type":"dois","attributes":{"doi":"10.15771/imejidev.2pg","updated":"2020-07-27T15:55:10.000Z"},"relationships":{}},{"id":"10.25601/3t2y-5624","type":"dois","attributes":{"doi":"10.25601/3t2y-5624","updated":"2020-07-27T15:55:08.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2p4","type":"dois","attributes":{"doi":"10.15771/imejidev.2p4","updated":"2020-07-27T15:55:06.000Z"},"relationships":{}},{"id":"10.70112/c1t31p/eyhyzo","type":"dois","attributes":{"doi":"10.70112/c1t31p/eyhyzo","updated":"2020-07-27T15:55:04.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2p3","type":"dois","attributes":{"doi":"10.15771/imejidev.2p3","updated":"2020-07-27T15:55:04.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2p5","type":"dois","attributes":{"doi":"10.15771/imejidev.2p5","updated":"2020-07-27T15:55:03.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b72190fc","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b72190fc","updated":"2020-07-27T15:55:03.000Z"},"relationships":{}},{"id":"10.5256/f1000research.485165.r30981","type":"dois","attributes":{"doi":"10.5256/f1000research.485165.r30981","updated":"2020-07-27T15:55:03.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c14f2df70","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c14f2df70","updated":"2020-07-27T15:55:03.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c1579d25c","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c1579d25c","updated":"2020-07-27T15:55:03.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3afaa536b","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3afaa536b","updated":"2020-07-27T15:55:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3b6843056","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3b6843056","updated":"2020-07-27T15:55:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c13997f97","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c13997f97","updated":"2020-07-27T15:55:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68c0f00a0b4","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68c0f00a0b4","updated":"2020-07-27T15:55:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c231ead0f0","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c231ead0f0","updated":"2020-07-27T15:55:02.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b8745809aa","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b8745809aa","updated":"2020-07-27T15:55:01.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c3af7ef728","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c3af7ef728","updated":"2020-07-27T15:55:01.000Z"},"relationships":{}},{"id":"10.70122/fk2/akvl0t/bnohne","type":"dois","attributes":{"doi":"10.70122/fk2/akvl0t/bnohne","updated":"2020-07-27T15:55:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a3170389d","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a3170389d","updated":"2020-07-27T15:55:00.000Z"},"relationships":{}},{"id":"10.0133/51707","type":"dois","attributes":{"doi":"10.0133/51707","updated":"2020-07-27T15:55:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c2205c535d","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c2205c535d","updated":"2020-07-27T15:54:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d68a2d7610bb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d68a2d7610bb","updated":"2020-07-27T15:54:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d8c22b2b00df","type":"dois","attributes":{"doi":"10.70131/test_doi_5d8c22b2b00df","updated":"2020-07-27T15:54:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b86f9677e7","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b86f9677e7","updated":"2020-07-27T15:54:58.000Z"},"relationships":{}},{"id":"10.23705/d978ne5m","type":"dois","attributes":{"doi":"10.23705/d978ne5m","updated":"2020-07-27T15:54:57.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b863caa9a1","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b863caa9a1","updated":"2020-07-27T15:54:57.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a41bc2eb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a41bc2eb","updated":"2020-07-27T15:54:57.000Z"},"relationships":{}},{"id":"10.0133/51702","type":"dois","attributes":{"doi":"10.0133/51702","updated":"2020-07-27T15:54:56.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b862d65afa","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b862d65afa","updated":"2020-07-27T15:54:56.000Z"},"relationships":{}},{"id":"10.70122/fk2/5fodhx","type":"dois","attributes":{"doi":"10.70122/fk2/5fodhx","updated":"2020-07-27T15:54:55.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d689a1260c06","type":"dois","attributes":{"doi":"10.70131/test_doi_5d689a1260c06","updated":"2020-07-27T15:54:55.000Z"},"relationships":{}},{"id":"10.70122/fk2/cuybdw","type":"dois","attributes":{"doi":"10.70122/fk2/cuybdw","updated":"2020-07-27T15:54:54.000Z"},"relationships":{}},{"id":"10.70122/fk2/vrm1z4","type":"dois","attributes":{"doi":"10.70122/fk2/vrm1z4","updated":"2020-07-27T15:54:53.000Z"},"relationships":{}},{"id":"10.17889/e108361","type":"dois","attributes":{"doi":"10.17889/e108361","updated":"2020-07-27T15:54:53.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d4b85f2ae220","type":"dois","attributes":{"doi":"10.70131/test_doi_5d4b85f2ae220","updated":"2020-07-27T15:54:53.000Z"},"relationships":{}},{"id":"10.70112/ytvinx","type":"dois","attributes":{"doi":"10.70112/ytvinx","updated":"2020-07-27T15:54:51.000Z"},"relationships":{}},{"id":"10.70118/00001249","type":"dois","attributes":{"doi":"10.70118/00001249","updated":"2020-07-27T15:54:51.000Z"},"relationships":{}},{"id":"10.70122/fk2/dbgzoi","type":"dois","attributes":{"doi":"10.70122/fk2/dbgzoi","updated":"2020-07-27T15:54:51.000Z"},"relationships":{}},{"id":"10.0133/10000401","type":"dois","attributes":{"doi":"10.0133/10000401","updated":"2020-07-27T15:54:50.000Z"},"relationships":{}},{"id":"10.0133/10000402","type":"dois","attributes":{"doi":"10.0133/10000402","updated":"2020-07-27T15:54:50.000Z"},"relationships":{}},{"id":"10.17889/e113033","type":"dois","attributes":{"doi":"10.17889/e113033","updated":"2020-07-27T15:54:50.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2m0","type":"dois","attributes":{"doi":"10.15771/imejidev.2m0","updated":"2020-07-27T15:54:50.000Z"},"relationships":{}},{"id":"10.0133/10000399","type":"dois","attributes":{"doi":"10.0133/10000399","updated":"2020-07-27T15:54:50.000Z"},"relationships":{}},{"id":"10.17889/e112705","type":"dois","attributes":{"doi":"10.17889/e112705","updated":"2020-07-27T15:54:48.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2m1","type":"dois","attributes":{"doi":"10.15771/imejidev.2m1","updated":"2020-07-27T15:54:48.000Z"},"relationships":{}},{"id":"10.17889/e112706","type":"dois","attributes":{"doi":"10.17889/e112706","updated":"2020-07-27T15:54:48.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2of","type":"dois","attributes":{"doi":"10.15771/imejidev.2of","updated":"2020-07-27T15:54:47.000Z"},"relationships":{}},{"id":"10.70122/fk2/prmq4x","type":"dois","attributes":{"doi":"10.70122/fk2/prmq4x","updated":"2020-07-27T15:54:46.000Z"},"relationships":{}},{"id":"10.17889/e108270v1","type":"dois","attributes":{"doi":"10.17889/e108270v1","updated":"2020-07-27T15:54:46.000Z"},"relationships":{}},{"id":"10.0133/10000403","type":"dois","attributes":{"doi":"10.0133/10000403","updated":"2020-07-27T15:54:46.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2la","type":"dois","attributes":{"doi":"10.15771/imejidev.2la","updated":"2020-07-27T15:54:45.000Z"},"relationships":{}},{"id":"10.70122/fk2/khsd5d","type":"dois","attributes":{"doi":"10.70122/fk2/khsd5d","updated":"2020-07-27T15:54:45.000Z"},"relationships":{}},{"id":"10.70122/fk2/0rpjrf","type":"dois","attributes":{"doi":"10.70122/fk2/0rpjrf","updated":"2020-07-27T15:54:44.000Z"},"relationships":{}},{"id":"10.70122/fk2/p2a1kz/682xfc","type":"dois","attributes":{"doi":"10.70122/fk2/p2a1kz/682xfc","updated":"2020-07-27T15:54:44.000Z"},"relationships":{}},{"id":"10.5256/f1000research.461956.r28316","type":"dois","attributes":{"doi":"10.5256/f1000research.461956.r28316","updated":"2020-07-27T15:54:43.000Z"},"relationships":{}},{"id":"10.70122/fk2/lgwrgy/uco2jn","type":"dois","attributes":{"doi":"10.70122/fk2/lgwrgy/uco2jn","updated":"2020-07-27T15:54:42.000Z"},"relationships":{}},{"id":"10.70112/rgjgo5/fwbjlk","type":"dois","attributes":{"doi":"10.70112/rgjgo5/fwbjlk","updated":"2020-07-27T15:54:42.000Z"},"relationships":{}},{"id":"10.17889/e108272v1","type":"dois","attributes":{"doi":"10.17889/e108272v1","updated":"2020-07-27T15:54:42.000Z"},"relationships":{}},{"id":"10.70122/fk2/cd2qfu/3ri1fz","type":"dois","attributes":{"doi":"10.70122/fk2/cd2qfu/3ri1fz","updated":"2020-07-27T15:54:42.000Z"},"relationships":{}},{"id":"10.70122/fk2/ooozrr","type":"dois","attributes":{"doi":"10.70122/fk2/ooozrr","updated":"2020-07-27T15:54:41.000Z"},"relationships":{}},{"id":"10.15771/imejidev.2l6","type":"dois","attributes":{"doi":"10.15771/imejidev.2l6","updated":"2020-07-27T15:54:41.000Z"},"relationships":{}},{"id":"10.25601/416fbd8c-55a9-441c-ac15-3d3168000b11","type":"dois","attributes":{"doi":"10.25601/416fbd8c-55a9-441c-ac15-3d3168000b11","updated":"2020-07-27T15:54:41.000Z"},"relationships":{}},{"id":"10.70112/rgjgo5/8ptzay","type":"dois","attributes":{"doi":"10.70112/rgjgo5/8ptzay","updated":"2020-07-27T15:54:40.000Z"},"relationships":{}},{"id":"10.70122/fk2/hlrkok/sqwulx","type":"dois","attributes":{"doi":"10.70122/fk2/hlrkok/sqwulx","updated":"2020-07-27T15:54:40.000Z"},"relationships":{}},{"id":"10.70122/fk2/hlrkok","type":"dois","attributes":{"doi":"10.70122/fk2/hlrkok","updated":"2020-07-27T15:54:38.000Z"},"relationships":{}}],"meta":{"total":207479,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAARLGpFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxqxZCRlJGMEhXNVJpYWNqUXJXOUlwSUNRAAAAAABEsaoWQkZSRjBIVzVSaWFjalFyVzlJcElDUQAAAAAARLGsFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxrRZCRlJGMEhXNVJpYWNqUXJXOUlwSUNR"},"links":{"self":"https://api.stage.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.stage.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAARLGpFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxqxZCRlJGMEhXNVJpYWNqUXJXOUlwSUNRAAAAAABEsaoWQkZSRjBIVzVSaWFjalFyVzlJcElDUQAAAAAARLGsFkJGUkYwSFc1UmlhY2pRclc5SXBJQ1EAAAAAAESxrRZCRlJGMEhXNVJpYWNqUXJXOUlwSUNR"}}'
95
+ http_version:
96
+ recorded_at: Sun, 01 Nov 2020 07:44:06 GMT
93
97
  - request:
94
98
  method: put
95
99
  uri: https://s3.eu-west-1.amazonaws.com/search.test.datacite.org/sitemaps/sitemap.xml.gz
96
100
  body:
97
101
  encoding: ASCII-8BIT
98
102
  string: !binary |-
99
- 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
100
104
  headers:
101
105
  Content-Type:
102
106
  - application/x-gzip
103
107
  Accept-Encoding:
104
108
  - ''
105
109
  User-Agent:
106
- - aws-sdk-ruby3/3.85.1 ruby/2.6.3 universal.x86_64-darwin19 aws-sdk-s3/1.59.0
110
+ - aws-sdk-ruby3/3.109.1 ruby/2.7.1 x86_64-darwin19 aws-sdk-s3/1.83.1
107
111
  X-Amz-Acl:
108
112
  - public-read
109
113
  Cache-Control:
@@ -111,17 +115,17 @@ http_interactions:
111
115
  Expect:
112
116
  - 100-continue
113
117
  Content-Md5:
114
- - w51S63+1HQyz2xrspVFzTw==
118
+ - 5w7hEYya26glQz+MCGlOmQ==
115
119
  X-Amz-Date:
116
- - 20191212T090644Z
120
+ - 20201101T074407Z
117
121
  X-Amz-Content-Sha256:
118
- - 8b27dcb6189c5304bbcd2183812d34c41eebc3a529ffefc8f47b92de782bc05c
122
+ - 8ebebc9b4cfd3d7024a995a95dfdbf1984ffc13c832a791c58ad9ad1ecefa456
119
123
  Authorization:
120
- - AWS4-HMAC-SHA256 Credential=AKIAJAMMCXAR3IXMNCGQ/20191212/eu-west-1/s3/aws4_request,
121
- SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
122
- Signature=2f16a5b4e10c6b101d12be125177565a0df1e624c535cb4427b89a3a7cfb2bd3
124
+ - AWS4-HMAC-SHA256 Credential=<AWS_ACCESS_KEY_ID>/20201101/eu-west-1/s3/aws4_request,
125
+ SignedHeaders=cache-control;content-md5;content-type;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
126
+ Signature=500e222bb3a90786ff550f32291a93301a00efd05dcc2ee73fd37d6310197646
123
127
  Content-Length:
124
- - '12430'
128
+ - '12716'
125
129
  Accept:
126
130
  - "*/*"
127
131
  response:
@@ -130,13 +134,13 @@ http_interactions:
130
134
  message: OK
131
135
  headers:
132
136
  X-Amz-Id-2:
133
- - za/vIiYwLTjAW2Nw+6Qiy6BoJfMik2R7KhGiFd9mJDOLPWw8gvyBuNFQ38a1IWIh43n5KkdgU8w=
137
+ - sUawUMBHOpB1L/1Hdg2gip3VL+j5OmvOwUMYStcRi7snG/38SgNrQ32gvfEvbdQ8E5pbGq36vNA=
134
138
  X-Amz-Request-Id:
135
- - 647B28F89F0EC3FD
139
+ - 6ACF19262547DB64
136
140
  Date:
137
- - Thu, 12 Dec 2019 09:06:45 GMT
141
+ - Sun, 01 Nov 2020 07:44:08 GMT
138
142
  Etag:
139
- - '"c39d52eb7fb51d0cb3db1aeca551734f"'
143
+ - '"e70ee1118c9adba825433f8c08694e99"'
140
144
  Content-Length:
141
145
  - '0'
142
146
  Server:
@@ -144,6 +148,6 @@ http_interactions:
144
148
  body:
145
149
  encoding: UTF-8
146
150
  string: ''
147
- http_version:
148
- recorded_at: Thu, 12 Dec 2019 09:06:44 GMT
151
+ http_version:
152
+ recorded_at: Sun, 01 Nov 2020 07:44:07 GMT
149
153
  recorded_with: VCR 3.0.3